@extends('layouts.app') @section('title','Services Charged Report') @section('styles')@endsection @section('content')
{{ $from->format('d M Y') }} — {{ $to->format('d M Y') }}
| Date of Service | Patient Name | Payer | Service / Description | Qty | Unit Price | Total (KES) |
|---|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($row->date_of_service)->format('d M Y') }} | {{ $row->patient_name }} | {{ $row->payer }} | {{ $row->service }} | {{ number_format($row->qty) }} | {{ number_format($row->unit_price) }} | {{ number_format($row->revenue) }} |
| No records. | ||||||
| {{ $cat }} Total | {{ number_format($items->sum('qty')) }} | KES {{ number_format($items->sum('revenue')) }} | ||||