Staff

Manage staff and their monthly salary generation.

@if (session('success'))
{{ session('success') }}
@endif
Total Staff
{{ number_format($totalStaff ?? 0) }}
Active Staff
{{ number_format($activeStaff ?? 0) }}
Staff List
Search by name, phone or email.
@if($q) Reset @endif
@forelse($staffs as $staff) @empty @endforelse
Staff Designation Status Base Salary Action
{{ $staff->name }}
{{ $staff->phone ?: ($staff->email ?: '-') }} @if($staff->nid_no) NID: {{ $staff->nid_no }} @endif
{{ $staff->designation ?: '-' }} @if(($staff->status ?? 'active') === 'active') ACTIVE @else INACTIVE @endif {{ number_format((float) ($staff->base_salary ?? 0), 2) }} Edit
No staff yet. Click “Add Staff”.
{{ $staffs->links() }}