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