@extends('layouts.user') @section('title', 'Employee Details') @section('content')
{{ $employee->jobRole->name ?? 'No Role Assigned' }}
{{ $experience->reason_for_leaving }}
| Item | Variant | Qty | Issued Date | Notes |
|---|---|---|---|---|
| {{ $issued->variant->uniform->name }} | {{ $issued->variant->size }} / {{ $issued->variant->color }} | {{ $issued->quantity }} | {{ $issued->issued_at->format('M d, Y') }} | {{ $issued->notes ?? '-' }} |
| No uniforms issued to this employee yet. | ||||
{{ $site->site_id }}
Banned: {{ \Carbon\Carbon::parse($site->pivot->banned_at)->format('M d, Y') }}
| Device ID | Type | Token (Truncated) | Last Updated |
|---|---|---|---|
| {{ $token->device_id ?? 'N/A' }} | {{ ucfirst($token->device_type ?? 'Unknown') }} | {{ \Illuminate\Support\Str::limit($token->token, 50) }} | {{ $token->updated_at->format('M d, Y H:i:s') }} |