@extends('admin.layouts.app') @section('title', __('Waiting List Management')) @section('breadcrumb') @endsection @section('content')
| {{ __('Request #') }} | {{ __('Patient') }} | {{ __('Specialty') }} | {{ __('Date Added') }} | {{ __('Days Waiting') }} | {{ __('common.status') }} | {{ __('common.actions') }} |
|---|---|---|---|---|---|---|
| #{{ $request->id }} |
{{ $request->patient?->full_name ?? __('N/A') }}
{{ $request->patient?->phone ?? '' }}
|
{{ $request->service?->category?->medicalSpecialty?->name ?? __('N/A') }} | {{ $request->created_at?->format('M d, Y') ?? __('N/A') }} | {{ $request->created_at?->diffInDays(now()) ?? 0 }} {{ __('days') }} | {{ ucfirst($request->status?->value ?? (string) $request->status) }} |