View ALL Daily Outdoor Income on {{ $date }}
@if(Session::has('success'))
{{Session::get('success')}}
@endif
@php $totalOutdoorIncome = 0 @endphp @foreach ($outdoor_incomes as $outdoor_income) @php $totalOutdoorIncome = $outdoor_income->taka+ $totalOutdoorIncome @endphp @endforeach
No. Invoice ID Taka User
1 {{ $outdoor_income->invoice_out_id }} {{ $outdoor_income->taka }} /- {{ $outdoor_income->user->name}}
Total {{ $totalOutdoorIncome}} Tk.
View ALL Daily Indoor Income on {{ $date }}
@if(Session::has('success'))
{{Session::get('success')}}
@endif
@php $totalIndoorIncome = 0 @endphp @foreach ($indoor_incomes as $indoor_income) @php $totalIndoorIncome = $indoor_income->taka+ $totalIndoorIncome @endphp @endforeach
No. Invoice ID Taka User
1 {{ $indoor_income->report_id }} {{ $indoor_income->taka }} /- {{ $indoor_income->user->name}}
Total {{ $totalIndoorIncome}} Tk.
View ALL Daily Indoor Patient Income on {{ $date }}
@if(Session::has('success'))
{{Session::get('success')}}
@endif
@php $totalIndoorPatientIncome = 0 @endphp @foreach ($indoor_patient_incomes as $indoor_patient_income) @php $totalIndoorPatientIncome = $indoor_patient_income->taka+ $totalIndoorPatientIncome @endphp @endforeach
No. Invoice ID Taka User
1 {{ $indoor_patient_income->report_id }} {{ $indoor_patient_income->taka }} /- {{ $indoor_patient_income->user->name}}
Total {{ $totalIndoorPatientIncome}} Tk.
View ALL Daily Accounce Cost on {{ $date }}
@if(Session::has('success'))
{{Session::get('success')}}
@endif
@php $totalCost = 0 @endphp @foreach ($accounce_costs as $accounce_cost) @php $totalCost = $accounce_cost->taka+ $totalCost @endphp @endforeach
No. Particular Taka
1 {{ $accounce_cost->name }} {{ $accounce_cost->taka }} /-
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 }} /-