@extends('layouts.admin.default') @section('content')
@can('patient statistics')
{{__("total sessions")}}
{{$total_session}}
{{__("total required")}}
{{$total_required}}
{{__("total paid")}}
{{$total_paid}}
{{__("total unpaid")}}
{{$total_unpaid}}
@endcan
@can('patient renewal') @if($patient->bookings()?->where('is_first',false)->count()>0) Renew @endif @endcan
...

{{$patient->first_name .' '. $patient->last_name}}

{{__("birthdate")}}
{{$patient->birth_date}}
{{__("country")}}
{{$patient->country?->name ??'----'}}
  • {{__("address")}}
    {{$patient->city .' '.$patient->region.' '.$patient->governorate}}
  • {{__("phone")}}
    {{$patient->father_phone??$patient->mother_phone}}
  • {{__("email")}}
    {{$patient->email}}
@can("patient bookings")
@endcan @can("patient services")
Add
@endcan @can("patient voice notes")
@endcan @can("patient payments")
{{__("Recent Transactions")}}
@endcan @can("patient protocol")
@endcan @can("patient report")
@endcan @can("patient sessions") @if($patient->sessions?->count())
{{-- --}}
@endif @endcan @can("patient appointments") @if($patient->doctor_appointments?->count())
@endif @endcan
@endsection