105 lines
5.6 KiB
PHP
105 lines
5.6 KiB
PHP
@extends('base.layout')
|
|
@section('content')
|
|
<div class="wrapper">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="card-box ribbon-box">
|
|
<div class="ribbon ribbon-danger">Rekapitulasi Data Bulan {{$bulan}} Tahun {{$tahun}}</div>
|
|
<p></p>
|
|
|
|
<div class="d-flex justify-content-between mb-2">
|
|
<a href="{{ route('exportRekapAntibiotik', ['bulan' => $bulan, 'tahun' => $tahun]) }}" class="btn btn-primary">
|
|
<i class="fa fa-print"></i> Export Excel (CSV)
|
|
</a>
|
|
|
|
<div>Halaman {{ $orderbydate->currentPage() }} dari {{ $orderbydate->lastPage() }}</div>
|
|
</div>
|
|
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered table-sm table-striped display" id="datatable">
|
|
<thead>
|
|
<tr>
|
|
<th>No</th>
|
|
<th>Status</th>
|
|
<th>No.RM</th>
|
|
<th>Name</th>
|
|
<th>Order</th>
|
|
<th>Gender</th>
|
|
<th>Date</th>
|
|
<th>Urgensi</th>
|
|
<th>Comming From</th>
|
|
<th>Code</th>
|
|
<th>Spesimen</th>
|
|
<th>Finish</th>
|
|
<th>Media</th>
|
|
<th>Sputum</th>
|
|
<th>Urine</th>
|
|
<th>Oshe</th>
|
|
<th>Glass</th>
|
|
<th>Botol</th>
|
|
<th>Paraf</th>
|
|
<th>Tips</th>
|
|
<th>Swab</th>
|
|
<th>Ab+</th>
|
|
<th>ESBL</th>
|
|
<th>MRSA</th>
|
|
|
|
@foreach($listAntibiotik as $antibiotic)
|
|
<th>{{ $antibiotic }}</th>
|
|
@endforeach
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@forelse($orderbydate as $data)
|
|
<tr>
|
|
<td>{{ $data->noloket }}</td>
|
|
<td>{{ $data->status }}</td>
|
|
<td>{{ $data->noregister }}</td>
|
|
<td>{{ $data->nmpasien }}</td>
|
|
<td>{{ $data->reques }}</td>
|
|
<td>{{ $data->jkpasien }}</td>
|
|
<td>{{ $data->daftar }}</td>
|
|
<td>{{ $data->urgensi }}</td>
|
|
<td>{{ $data->asalpasien }}</td>
|
|
<td>{{ $data->kd_spesimen }}</td>
|
|
<td>{{ $data->nm_spesimen }}</td>
|
|
<td>{{ $data->updated_at }}</td>
|
|
<td>{{ $data->bhp_media}} </td>
|
|
<td>{{ $data->bhp_potsputum}} </td>
|
|
<td>{{ $data->bhp_poturine}} </td>
|
|
<td>{{ $data->bhp_oshe}} </td>
|
|
<td>{{ $data->bhp_obyekglass}} </td>
|
|
<td>{{ $data->bhp_botolbd}} </td>
|
|
<td>{{ $data->bhp_parafilm}} </td>
|
|
<td>{{ $data->bhp_tips}} </td>
|
|
<td>{{ $data->bhp_cottonswab}} </td>
|
|
<td>{{ $data->bhp_antibiotiktambahan}} </td>
|
|
<td>{{ $data->id_esbl}} </td>
|
|
<td>{{ $data->id_mrsa}} </td>
|
|
|
|
@foreach($listAntibiotik as $headerAb)
|
|
@php
|
|
// Ambil nilai dari Lookup Array
|
|
// Jika pasien ini tidak tes antibiotik tersebut, tampilkan kosong
|
|
$val = $antibiotikLookup[$data->id][$headerAb] ?? '';
|
|
@endphp
|
|
<td class="text-center">{{ $val }}</td>
|
|
@endforeach
|
|
</tr>
|
|
@empty
|
|
<tr>
|
|
<td colspan="{{ 24 + count($listAntibiotik) }}" class="text-center">
|
|
Tidak ada data tersedia.
|
|
</td>
|
|
</tr>
|
|
@endforelse
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |