@extends('admin.layouts.app') @push('stylesheets') @endpush @section('content')

Notifications

{{--
--}}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('success'))
{{ session('success') }}
@endif
@if (count($files) > 0) @foreach ($files as $f) @endforeach @else

No records available.

@endif
Message Action
{{ ucfirst($f->type) }} file {{ $f->file_name }} is uploaded by {{ $f->user['name'] ?? '' }} on {{ \Carbon\Carbon::parse($f->created_at)->format('d/M/Y') }} View File
@endsection @push('scripts_bottom') @endpush