View ALL Monthly Outdoor Report Income on {{ $date }}
| No. | Date | Taka |
|---|---|---|
| 1 | {{ $outdoor_income->created_at->format('m-d-Y')}} | {{ $outdoor_income->totalOutdoorIncome }} /- | @php $totalOutdoorIncome = $outdoor_income->totalOutdoorIncome+ $totalOutdoorIncome @endphp
| Total | {{ $totalOutdoorIncome }} Tk. |
View ALL Monthly Indoor Report Income on {{ $date }}
| No. | Date | Taka |
|---|---|---|
| 1 | {{ $indoor_income->created_at->format('m-d-Y')}} | {{ $indoor_income->totalIndoorIncome }} /- | @php $totalIndoorIncome = $indoor_income->totalIndoorIncome+ $totalIndoorIncome @endphp
| Total | {{ $totalIndoorIncome }} Tk. |
View ALL Monthly Indoor Patient Income on {{ $date }}
| No. | Date | Taka |
|---|---|---|
| 1 | {{ $indoor_patient_income->created_at->format('m-d-Y')}} | {{ $indoor_patient_income->totalIndoorPatientIncome }} /- | @php $totalIndoorPatientIncome = $indoor_patient_income->totalIndoorPatientIncome+ $totalIndoorPatientIncome @endphp
| Total | {{ $totalIndoorPatientIncome }} Tk. |
View ALL Monthly Cost on {{ $date }}
| No. | Date | Taka |
|---|---|---|
| 1 | {{ $accounce_cost->created_at->format('m-d-Y')}} | {{ $accounce_cost->totalCost }} /- | @php $totalCost = $accounce_cost->totalCost+ $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 }} /- |