@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
| No |
Tanggal Registrasi |
Rekam Medis |
Nama Pasien |
Jenis Kelamin |
Nomor Ponsel |
Alamat |
@forelse ($patients as $laboratory)
| {{ $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 ?? '-' }} |
@empty
@endforelse
@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
| No |
Tanggal Registrasi |
Rekam Medis |
Nama Pasien |
Jenis Kelamin |
Nomor Ponsel |
Alamat |
@forelse ($patients as $clinic)
| {{ $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 ?? '-' }} |
@empty
@endforelse
@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
| No |
Tanggal Registrasi |
Rekam Medis |
Nama Pasien |
Jenis Kelamin |
Nomor Ponsel |
Alamat |
@forelse ($patients as $pharmacy)
| {{ $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 ?? '-' }} |
@empty
@endforelse
@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 ?? '-' }}
| No |
Tanggal Registrasi |
Rekam Medis |
Nama Pasien |
Jenis Kelamin |
Nomor Ponsel |
Alamat |
@forelse ($patients as $patient)
| {{ $loop->iteration }} |
{{ optional($patient->created_at)->format('d F Y') ?? '-' }} |
{{ $patient->medical_record_number ?? '-' }} |
{{ $patient->name ?? '-' }} |
{{ $patient->gender ?? '-' }} |
{{ $patient->phone_number ?? '-' }} |
{{ $patient->address ?? '-' }} |
@empty
@endforelse
@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
| No |
Tanggal Registrasi |
Rekam Medis |
Nama Pasien |
Jenis Kelamin |
Nomor Ponsel |
Alamat |
@forelse ($patients as $patient)
| {{ $loop->iteration }} |
{{ optional($patient->created_at)->format('d F Y') ?? '-' }} |
{{ $patient->medical_record_number ?? '-' }} |
{{ $patient->name ?? '-' }} |
{{ $patient->gender ?? '-' }} |
{{ $patient->phone_number ?? '-' }} |
{{ $patient->address ?? '-' }} |
@empty
@endforelse
@endif