Recent Documents

Latest uploads across all folders

@can('viewAny', App\Models\Document::class) View all @endcan
@if($recentDocuments->isEmpty())
@include('dashboard.partials.icon', ['name' => 'document', 'class' => 'h-6 w-6'])

No documents yet

@else
@foreach($dashboardUi['recentDocuments'] as $row) @endforeach
Document Folder Status Uploaded

{{ $row['model']->title }}

{{ $row['model']->doc_number }}

{{ $row['model']->folder?->name ?? '-' }} {{ $row['statusLabel'] }}

{{ $row['model']->created_at->diffForHumans() }}

{{ $row['model']->creator?->full_name ?? '-' }}

@endif