{{ env('APP_NAME') }} Operation Reports

@if (session()->has('message'))
{{ session('message') }}
@endif
Loading..
{{ __('Add New operationReport') }}
@error('patient') {{ $message }} @enderror
@error('details') {{ $message }} @enderror
@error('doctor') {{ $message }} @enderror
@error('time') {{ $message }} @enderror


{{ _('All operationReports') }}
@forelse ($OperationReports as $operationReport) @empty @endforelse
ID Patient Details Doctor Dated Created_at Actions
{{ $operationReport->id }} {{ $operationReport->patient }} {{ $operationReport->description }} {{ $operationReport->doctor }} {{ $operationReport->time }} {{ $operationReport->created_at }}
{{ __('Null') }} {{ __('Null') }} {{ __('Null') }} {{ __('Null') }} {{ __('Null') }}
{{ $OperationReports->links() }}