Staff Management Total Staff: {{ $totalStaff ?? 0 }}

@forelse ($staff as $s) @empty @endforelse
Name {!! $sortField === 'staff_name' ? ($sortDirection === 'asc' ? '↑' : '↓') : '' !!} Email {!! $sortField === 'staff_email' ? ($sortDirection === 'asc' ? '↑' : '↓') : '' !!} Phone Status {!! $sortField === 'staff_status' ? ($sortDirection === 'asc' ? '↑' : '↓') : '' !!} Actions
@if ($s->profile_image)
{{ $s->staff_name }}
@else
{{ $this->getInitials($s->staff_name) }}
@endif {{ $s->staff_name }}
{{ $s->staff_email }} {{ $s->staff_phone ?? 'N/A' }} @if ($s->staff_status === 'active') Active @else Inactive @endif
No staff found.
@push('styles') @endpush