{{-- resources/views/agent/client-files.blade.php --}} @extends('layouts.contentLayoutMaster') @section('title', 'Client Files') @section('content')

Files for {{ $client->first_name }} {{ $client->last_name }}

@if ($files->isEmpty())
No files have been uploaded for this client yet.
@else @foreach ($files as $index => $file) @endforeach
# File Name Type Uploaded At Download
{{ $index + 1 }} {{ $file->name }} {{ ucfirst($file->type) }} {{ $file->created_at->format('M d, Y H:i') }} Download
@endif
@endsection