@extends('layouts.app') @section('content')
DataTables has most features enabled by
default, so all you need to do to use it with your own tables is to call
the construction function: $().DataTable();
.
No | Nama Rumah Sakit | Jumlah Tempat Tidur | PASIEN KELUAR (HIDUP + MATI) | JUMLAH HARI PERAWATAN | JUMLAH LAMA DIRAWAT | BOR (%) | BTO (KALI) | TOI (HARI) | ALOS (HARI) |
---|---|---|---|---|---|---|---|---|---|
{{$key + 2}} | {{$item->nama_rumah_sakit}} | {{$item->jumlah_tempat_tidur}} | {{$item->pasien_keluar_hidup_mati_L + $item->pasien_keluar_hidup_mati_P}} | {{$item->jumlah_tempat_tidur>0?number_format($item->jumlah_hari_perawatan/($item->jumlah_tempat_tidur * 365) * 100, 2):0}} | {{$item->jumlah_tempat_tidur>0?number_format(($item->pasien_keluar_hidup_mati_L + $item->pasien_keluar_hidup_mati_P)/($item->jumlah_tempat_tidur), 2):0}} | {{$item->pasien_keluar_hidup_mati_L + $item->pasien_keluar_hidup_mati_P>0?number_format((($item->jumlah_tempat_tidur * 365)-$item->jumlah_hari_perawatan)/($item->pasien_keluar_hidup_mati_L + $item->pasien_keluar_hidup_mati_P), 2):0}} | {{$item->pasien_keluar_hidup_mati_L + $item->pasien_keluar_hidup_mati_P>0?number_format(($item->jumlah_lama_dirawat)/($item->pasien_keluar_hidup_mati_L + $item->pasien_keluar_hidup_mati_P), 2):0}} |