Jumlah Per Periode Jumlah Per Periode Laporan Pasien Cetak
@if ($property == 'laboratorium') @if (app_setting('APP_MODE') == 'lab')

LAPORAN JUMLAH PASIEN LABORATORIUM PER PERIODE

@if ($this->filters['date-start'] && $this->filters['date-end'] != null) {{ Carbon\Carbon::parse($this->filters['date-start'])->format('d F Y') }} s/d {{ Carbon\Carbon::parse($this->filters['date-end'])->format('d F Y') }} @else {{ $this->filters['date-start'] }} s/d {{ $this->filters['date-end'] }} @endif

@forelse ($patients as $laboratory) @empty @endforelse
No Tanggal Registrasi Rekam Medis Nama Pasien Jenis Kelamin Nomor Ponsel Alamat
{{ $loop->iteration }} {{ optional($laboratory->date_time)->format('d F Y') ?? '-' }} {{ $laboratory->patient->medical_record_number ?? '-' }} {{ $laboratory->patient->name ?? '-' }} {{ $laboratory->patient->gender ?? '-' }} {{ $laboratory->patient->phone_number ?? '-' }} {{ $laboratory->patient->address ?? '-' }}
@endif @elseif ($property == 'klinik')

LAPORAN JUMLAH PASIEN KLINIK PER PERIODE

@if ($this->filters['date-start'] && $this->filters['date-end'] != null) {{ Carbon\Carbon::parse($this->filters['date-start'])->format('d F Y') }} s/d {{ Carbon\Carbon::parse($this->filters['date-end'])->format('d F Y') }} @else {{ $this->filters['date-start'] }} s/d {{ $this->filters['date-end'] }} @endif

@forelse ($patients as $clinic) @empty @endforelse
No Tanggal Registrasi Rekam Medis Nama Pasien Jenis Kelamin Nomor Ponsel Alamat
{{ $loop->iteration }} {{ optional($clinic->date)->format('d F Y') ?? '-' }} {{ $clinic->patient->medical_record_number ?? '-' }} {{ $clinic->patient->name ?? '-' }} {{ $clinic->patient->gender ?? '-' }} {{ $clinic->patient->phone_number ?? '-' }} {{ $clinic->patient->address ?? '-' }}
@elseif ($property == 'apotik')

LAPORAN JUMLAH PASIEN APOTIK PER PERIODE

@if ($this->filters['date-start'] && $this->filters['date-end'] != null) {{ Carbon\Carbon::parse($this->filters['date-start'])->format('d F Y') }} s/d {{ Carbon\Carbon::parse($this->filters['date-end'])->format('d F Y') }} @else {{ $this->filters['date-start'] }} s/d {{ $this->filters['date-end'] }} @endif

@forelse ($patients as $pharmacy) @empty @endforelse
No Tanggal Registrasi Rekam Medis Nama Pasien Jenis Kelamin Nomor Ponsel Alamat
{{ $loop->iteration }} {{ optional($pharmacy->date)->format('d F Y') ?? '-' }} {{ $pharmacy->patient->medical_record_number ?? '-' }} {{ $pharmacy->patient->name ?? '-' }} {{ $pharmacy->patient->gender ?? '-' }} {{ $pharmacy->patient->phone_number ?? '-' }} {{ $pharmacy->patient->address ?? '-' }}
@elseif ($property == 'dokter')

LAPORAN JUMLAH PASIEN DOKTER PER PERIODE

@if ($this->filters['date-start'] && $this->filters['date-end'] != null) {{ Carbon\Carbon::parse($this->filters['date-start'])->format('d F Y') }} s/d {{ Carbon\Carbon::parse($this->filters['date-end'])->format('d F Y') }} @else {{ $this->filters['date-start'] }} s/d {{ $this->filters['date-end'] }} @endif

@foreach ($doctors as $doctor) @endforeach

Nama Dokter : {{ $selectedDoctor->name ?? '-' }}

@forelse ($patients as $patient) @empty @endforelse
No Tanggal Registrasi Rekam Medis Nama Pasien Jenis Kelamin Nomor Ponsel Alamat
{{ $loop->iteration }} {{ optional($patient->created_at)->format('d F Y') ?? '-' }} {{ $patient->medical_record_number ?? '-' }} {{ $patient->name ?? '-' }} {{ $patient->gender ?? '-' }} {{ $patient->phone_number ?? '-' }} {{ $patient->address ?? '-' }}
@else

LAPORAN JUMLAH PASIEN PER PERIODE

@if ($this->filters['date-start'] && $this->filters['date-end'] != null) {{ Carbon\Carbon::parse($this->filters['date-start'])->format('d F Y') }} s/d {{ Carbon\Carbon::parse($this->filters['date-end'])->format('d F Y') }} @else {{ $this->filters['date-start'] }} s/d {{ $this->filters['date-end'] }} @endif

@forelse ($patients as $patient) @empty @endforelse
No Tanggal Registrasi Rekam Medis Nama Pasien Jenis Kelamin Nomor Ponsel Alamat
{{ $loop->iteration }} {{ optional($patient->created_at)->format('d F Y') ?? '-' }} {{ $patient->medical_record_number ?? '-' }} {{ $patient->name ?? '-' }} {{ $patient->gender ?? '-' }} {{ $patient->phone_number ?? '-' }} {{ $patient->address ?? '-' }}
@endif
@push('styles') @endpush @push('scripts') @endpush