@extends('layouts.user') @section('title', 'Employee Requests') @section('content')
| Employee | Type | Subject | Status | Date | Actions |
|---|---|---|---|---|---|
|
{{ $req->employee->first_name }}
{{ $req->employee->last_name }}
ID: {{ $req->employee->employee_id ?? $req->employee->id }}
|
{{ ucfirst($req->type) }} | {{ $req->subject ?: 'No Subject' }} | {{ ucfirst($req->status) }} | {{ $req->created_at->format('M d, Y') }} | View |
| No requests found. | |||||