@extends('Admin/layout/master') @section('title', 'Patients Detail') @section('content')
Patients Detail
@if ($patient->patient_type == 'walk') @elseif($patient->patient_type == 'insurence') @endif
First Name {{ $patient->first_name }}
Last Name {{ $patient->last_name }}
Email {{ $patient->email }}
Gender {{ $patient->gender }}
Date of Birth {{ $patient->date_of_birth }}
Phone # {{ $patient->phone }}
Patient Type {{ $patient->patient_type }}
Physician {{ $patient->phycisan->fisrt_name }} {{ $patient->phycisan->last_name }}
HCPCS Code @foreach ($hcpcses as $hcpcs) {{ $hcpcs->hcpsc_code }},{!! ' ' !!} @endforeach
Diagnonsis Code @foreach ($diagnonses as $diagnonse) {{ $diagnonse->code }},{!! ' ' !!} @endforeach
Insurance Company {{ $patient->insuranceCompany->insurence_company_name }}
ID Card
Signature
Authorization {{ $patient->authrization }}
Qunatity {{ $patient->qty_id }}
@endsection