@extends('layouts.layout') @section('content')
@include('patient-detail.edit-modal') @include('patient-appointment.create-modal') @include('patient-appointment.edit-modal') @include('patient-detail.patient-files-modal')

{{ $patientDetail->name }}

@if ($patientDetail->status == 1) @lang('Active') @elseif($patientDetail->status == 2) @lang('Waitlist') @elseif($patientDetail->status == 3) @lang('Discharged') @else @lang('Inactive') @endif

{{ ucfirst($patientDetail->gender) }}

{{ $patientDetail->date_of_birth }}

{{ $patientDetail->blood_group }}

{{ $patientDetail->email }}

{{ $patientDetail->phone }}

{!! $patientDetail->address !!}

@lang('Patient Info')

New Appointment @if (auth()->user()->can('patient-delete')) Delete Selected @endif
# Appointment Date Time Range Case/Non Case Therapy Appointment Type Doctor Status Issue Actions
# Therapy Start Date End Date Total Hours Remaining Hours Actions
# Invoice Date Case/Non Case Amount Paid Amount Due Total Actions
# Document Name Case/Non Case Actions
@endsection @section('one_page_js') @endsection