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

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


{{ _('All BirthReports') }}
@forelse ($BirthReports as $BirthReport) @empty @endforelse
BirthReport Patient Details Doctor Dated Actions
{{ $BirthReport->id }} {{ $BirthReport->patient }} {{ $BirthReport->description }} {{ $BirthReport->doctor }}
{{ __('Null') }} {{ __('Null') }} {{ __('Null') }} {{ __('Null') }} {{ __('Null') }}
{{ $BirthReports->links() }}