| @lang('ID') |
{{-- @lang('Doctor Name') | --}}
@lang('Patient Name') |
@lang('Case Date') |
@lang('Actions') |
@foreach ($prescriptions as $prescription)
| {{ $prescription->id }} |
{{-- {{ $prescription->doctor->name ?? 'Deleted Therapist' }} | --}}
{{ optional($prescription->user)->name ?? 'Patient Deleted' }} |
{{ date($companySettings->date_format ?? 'Y-m-d', strtotime($prescription->prescription_date)) }} |
@can('prescription-update')
@endcan
@can('prescription-delete')
@endcan
|
@endforeach
{{ $prescriptions->withQueryString()->links() }}