@extends('layouts.main') @push('styles') @endpush @section('content')
{{ $hospital_information->name }}
{{ $hospital_information->address }}
{{ __('patient_finance.tel') }}: {{ $hospital_information->phone_number }}
{{ __('patient_finance.email') }}: {{ $hospital_information->email }}
{{ __('patient_finance.cashier') }}: {{ auth()->user()->first_name }} {{ auth()->user()->last_name }}
{{ __('patient_finance.date') }}: {{ streamline_date_time_short($receipt_date) }}
{{ __('patient_finance.receipt_number') }}: {{ $receipt_number }}
REF : {{ $patient->first_name }} {{ $patient->last_name }}
{{ __('patient_finance.patient_category') }} : {{ get_name($patient->category_id, "id", "name", "patient_categories") }}
| {{ __('patient_finance.description') }} | {{ __('patient_finance.price') }} | @for($i = 0; $i < count($service_ids_array); $i++)
|---|---|
| {{ get_name($service_ids_array[$i], "id", "name", "services") }} | {{ ugandan_shillings($service_prices_array[$i]) }} |
| {{ __('patient_finance.total_to_pay') }} | {{ ugandan_shillings($total_amount_pay) }} |
| {{ __('payments.discounts_applied') }} | {{ ugandan_shillings($discounts_applied) }} |
| {{ __('payments.patient_to_pay') }} | {{ ugandan_shillings($patient_to_pay) }} |