@forelse($historys as $history)
{!! clean($history->title) !!} -
{{ $history->created_at }}
{!! clean($history->note) !!}
@empty
No hay historial clínico
@endforelse
@if(!empty($patient->Patient->alergias))
{{ __('sentence.allergies') }}
{!! $patient->Patient->alergias !!}
@endif
@if(!empty($patient->Patient->cirugias))
{{ __('sentence.surgery history') }}
{!! $patient->Patient->cirugias !!}
@endif
@if(!empty($patient->Patient->apf))
{{ __('sentence.Chronic diseases') }}
{!! $patient->Patient->apf !!}
@endif
| Id |
{{ __('sentence.Date') }} |
{{ __('sentence.Time Slot') }} |
{{ __('sentence.Status') }} |
{{ __('sentence.Actions') }} |
@forelse($appointments as $appointment)
| {{ $appointment->id }} |
|
|
@if($appointment->visited == 0)
@elseif($appointment->visited == 1)
@else
@endif
|
|
@empty
No hay citas
|
@endforelse
| {{ __('sentence.Reference') }} |
{{ __('sentence.Content') }} |
{{ __('sentence.Created at') }} |
{{ __('sentence.Actions') }} |
@forelse($prescriptions as $prescription)
| {{ $prescription->reference }} |
|
|
|
@empty
No hay recetas
|
@endforelse
@forelse($documents as $document)
@if($document->document_type != "pdf")
@else
 }})
@endif
{{ $document->title }}
{{ $document->note }}
Descargar
@empty
No hay documentos
@endforelse
Total con IVA
{{ App\Setting::get_option('currency') }}
{{ Collect($invoices)->sum('total_with_tax') }}
Pagado
{{ App\Setting::get_option('currency') }}
{{ Collect($invoices)->sum('deposited_amount') }}
Deuda
{{ App\Setting::get_option('currency') }}
{{ Collect($invoices)->where('payment_status', 'Partially Paid')->sum('due_amount') }}
| {{ __('sentence.Invoice') }} |
{{ __('sentence.Date') }} |
{{ __('sentence.Amount') }} |
{{ __('sentence.Status') }} |
{{ __('sentence.Actions') }} |
@forelse($invoices as $invoice)
| {{ $invoice->reference }} |
|
{{ App\Setting::get_option('currency') }} {{ $invoice->total_with_tax }}
@if($invoice->payment_status == 'Unpaid' or $invoice->payment_status == 'Partially Paid')
@endif
|
@if($invoice->payment_status == 'Unpaid')
@elseif($invoice->payment_status == 'Paid')
@else
@endif
|
|
@empty
No hay facturas
|
@endforelse