@extends('dashboard.layouts.app') @section('content') @if (session('success'))
{{ session('success') }}
@endif
Show
Add New Employee
@forelse($staffs as $index => $staff) @empty @endforelse
Photo ID First Name Last Name Department Employee Type Date Of Joining Actions
staff photo {{ $staff->id }} {{ $staff->first_name }} {{ $staff->last_name }} {{ $staff->department->name??'' }} {{ $staff->roleType->title ??'' }} {{ $staff->date_of_joining }} @if (isset($staff->role) && Str::lower($staff->role->name) == 'super admin') Super Admin @else @endif
No staff found.
{{ $staffs->appends(request()->except('page'))->links('pagination::bootstrap-5') }}
@endsection