Manage Attestations 📋

View, edit, and manage all attestations

+ Create New
@if(session('success'))

{{ session('success') }}

@endif
@if($attestations->count())
@foreach($attestations as $attestation) @endforeach
ID Department Status Created Actions
#{{ $attestation->id }} {{ $attestation->department->emoji ?? '📋' }} {{ $attestation->department->name }} @if($attestation->status === 'pending') Pending @elseif($attestation->status === 'approved') Approved @else Rejected @endif {{ $attestation->created_at->format('M d, Y') }}
Edit
@csrf @method('DELETE')
{{ $attestations->links() }}
@else @endif