@extends('layouts.layout') @section('content')

@lang('Cases List')

@if (request()->isFilterActive) @lang('Clear') @endif
{{-- --}} @foreach ($prescriptions as $prescription) {{-- --}} @endforeach
@lang('ID')@lang('Doctor Name')@lang('Patient Name') @lang('Case Date') @lang('Actions')
{{ $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
{{ $prescriptions->withQueryString()->links() }}
@include('layouts.delete_modal') @endsection @push('footer') @endpush