@extends('layouts.app')
@section('content')
{{ count($resep) }}
Total Resep Obat
{{ count($hariIni) }}
Total Resep Obat Hari Ini
Export to excel
Export to pdf
{{-- Collapse excel --}}
{{-- Collapse Pdf --}}
| No. |
Nama Pasien |
Tanggal Resep |
Action |
@for ($i = 0; $i < count($resep); $i++)
| {{ $no++ }} |
{{ $resep[$i]['pasien']['nama'] }} |
{{ date('d-m-Y', strtotime($resep[$i]['created_at'])) }} |
{{-- --}}
|
@endfor
{{-- modal detail --}}
{{-- modal edit --}}
{{-- --}}
@endsection
@section('customJs')
@endsection