@role('Super-admin|Doctor|Branch-manager|Receptionist')
{{ __('patientappo.transaction') }}
{{ __('basic.amount') }}
{{ $msg }}
{{ $msg }}
{{ __('basic.nothing to show') }}
{{ __('basic.balance') }}
{{ __('basic.amount') }}
{{ $msg }}
{{ __('basic.nothing to show') }}
| {{ __('basic.name') }} | {{ __('basic.type') }} | {{ __('basic.discount') }} | {{ __('patientappo.final price') }} | {{ __('basic.remaining amount') }} | {{ __('basic.status') }} | {{ __('basic.description') }} | {{ __('basic.branch') }} | {{ __('basic.date') }} |
|---|---|---|---|---|---|---|---|---|
| {{ $item->new_id }} | {{ $msg_invoice_type }} | @if (!empty($item->discount)) {{ $item->discount }} {{ __('basic.egp') }} @endif | {{ $item->final_price }} {{ $item->currency->code }} | {{ $item->final_price - $item->total_paid }} {{ $item->currency->code }} | {{ $msg_invoice }} | {{ $item->note }} @if ($item->worker) | shift: {{ $item->worker->name }} @endif | {{ $item->branch?->name }} |
{{ date('Y-m-d', strtotime($item->paid_date)) }} {{ date('h:i a', strtotime($item->paid_date)) }} |
| {{ __('basic.name') }} | {{ __('basic.date') }} | {{ __('basic.treasury') }} | {{ __('basic.goes to') }} | {{ __('basic.current balance') }} | {{ __('basic.status') }} |
|---|---|---|---|---|---|
|
@if ($item->type == 0)
@php
$icon = "fas fa-plus";
$icon_color = "text-green";
$type = __('basic.income');
@endphp
@else
@php
$icon = "fas fa-minus";
$icon_color = "main-color";
$type = __('basic.expenses');
@endphp
@endif
{{ $item->code }}{{ $item->receiver }}{{ $type }} |
{{ $item->paid_date}} |
{{ $item->treasury->name }}
|
@if($item->type == 0)
{{ $item->debit_acc->name }}
@else
{{ $item->debit_acc->name }}
@endif
|
{{ $item->amount .' ' . $item->currency->code}} |