diff --git a/app/resources/views/home.blade.php b/app/resources/views/home.blade.php index fde4321..4a49196 100644 --- a/app/resources/views/home.blade.php +++ b/app/resources/views/home.blade.php @@ -2,10 +2,37 @@ @section('page_content')
-
- @foreach ($files as $file) - [{{(new DateTimeImmutable)->setTimestamp($file->getCTime())->format('Y-m-d H:i:s')}}] {{$file->getBasename()}} + + + + + + + + + @foreach($files as $file) + + + + @endforeach - + +
Date File
+ {{(new DateTimeImmutable)->setTimestamp($file->getCTime())->format('Y-m-d H:i:s')}} + + + {{$file->getBasename()}} + +
@endsection + +@push('page_scripts') + +@endpush diff --git a/app/resources/views/layout/body/scripts.blade.php b/app/resources/views/layout/body/scripts.blade.php index 7dc11f8..e236222 100644 --- a/app/resources/views/layout/body/scripts.blade.php +++ b/app/resources/views/layout/body/scripts.blade.php @@ -1,4 +1,5 @@ + @stack('page_scripts') diff --git a/app/resources/views/layout/head/styles.blade.php b/app/resources/views/layout/head/styles.blade.php index 60ed4f9..b2fdb11 100644 --- a/app/resources/views/layout/head/styles.blade.php +++ b/app/resources/views/layout/head/styles.blade.php @@ -1,3 +1,4 @@ + @stack('page_styles')