@php $pageName = "staff"; $subpageName = "status-change-request"; @endphp @extends('layouts.app') @section('content')
@if(Session::has('message_success')) @endif
@forelse ($employees as $item) @empty @endforelse
Fullname Gender Nationality Employee ID Phone Action
{{ trim($item->surname . ' ' . $item->firstname . ' ' . $item->othername) }} {{ $item->gender }} {{ $item->nationality }} {{ $item->employee_id }} {{ $item->phone ?? $item->contact_num }}
No employees found.
{{ $employees->appends(request()->input())->links() }}
@endsection @section('scripts') @endsection