View ALL Daily Outdoor Income on {{ $date }}
@if(Session::has('success'))
{{Session::get('success')}}
@endif
| No. | Invoice ID | Taka | User |
|---|---|---|---|
| 1 | {{ $outdoor_income->invoice_out_id }} | {{ $outdoor_income->taka }} /- | {{ $outdoor_income->user->name}} | @php $totalOutdoorIncome = $outdoor_income->taka+ $totalOutdoorIncome @endphp
| Total | {{ $totalOutdoorIncome}} Tk. |
View ALL Daily Indoor Income on {{ $date }}
@if(Session::has('success'))
{{Session::get('success')}}
@endif
| No. | Invoice ID | Taka | User |
|---|---|---|---|
| 1 | {{ $indoor_income->report_id }} | {{ $indoor_income->taka }} /- | {{ $indoor_income->user->name}} | @php $totalIndoorIncome = $indoor_income->taka+ $totalIndoorIncome @endphp
| Total | {{ $totalIndoorIncome}} Tk. |
View ALL Daily Indoor Patient Income on {{ $date }}
@if(Session::has('success'))
{{Session::get('success')}}
@endif
| No. | Invoice ID | Taka | User |
|---|---|---|---|
| 1 | {{ $indoor_patient_income->report_id }} | {{ $indoor_patient_income->taka }} /- | {{ $indoor_patient_income->user->name}} | @php $totalIndoorPatientIncome = $indoor_patient_income->taka+ $totalIndoorPatientIncome @endphp
| Total | {{ $totalIndoorPatientIncome}} Tk. |
View ALL Daily Accounce Cost on {{ $date }}
@if(Session::has('success'))
{{Session::get('success')}}
@endif
| No. | Particular | Taka |
|---|---|---|
| 1 | {{ $accounce_cost->name }} | {{ $accounce_cost->taka }} /- | @php $totalCost = $accounce_cost->taka+ $totalCost @endphp
| Total | {{ $totalCost }} Tk. |
Total balance on {{ $date }}
| Name | Taka |
|---|---|
| {{ "Total Outdoor Report Income" }} | {{ $totalOutdoorIncome }} /- |
| {{ "Total Indoor Report Income" }} | {{ $totalIndoorIncome }} /- |
| {{ "Total Admit Patient Income" }} | {{ $totalIndoorPatientIncome }} /- |
| {{ "Total Income" }} | {{ $totalOutdoorIncome + $totalIndoorIncome + $totalIndoorPatientIncome }} /- |
| {{ "Total Cost "}} | {{ $totalCost }} /- |
| Net Balance | {{ $totalOutdoorIncome + $totalIndoorIncome + $totalIndoorPatientIncome - $totalCost }} /- |