@extends('sub-admin.layout.subadmin') @section('title', 'List') @section('content')
| Employee ID | Name | Contact | Designation | Current Office | Posting Area | Home District | Date of Birth | Batch | M fee | B fee | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $user->employee_id }} | {{ $user->name }} | {{ $user->email }} | {{ $user->contact ?? 'Not updated' }} | {{ $user->designation }} | {{ $user->current_office }} | {{ $user->posting_area }} | {{ $user->home_district }} | {{ $user->date_of_birth }} | {{ $user->batch }} | @if ($user->annual_status == 0) N/A @elseif ($user->annual_status == 1) Paid @elseif ($user->annual_status == 2) Pending Approval @elseif ($user->annual_status == 3) Declined @else Unknown @endif | @if ($user->b_fund_status == 0) N/A @elseif ($user->b_fund_status == 1) Paid @elseif ($user->b_fund_status == 2) Pending Approval @elseif ($user->b_fund_status == 3) Declined @else Unknown @endif |