@extends('layouts/layoutMaster') @section('title', 'View Patient') @section('vendor-style') @vite(['resources/assets/vendor/libs/datatables-bs5/datatables.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-responsive-bs5/responsive.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-buttons-bs5/buttons.bootstrap5.scss', 'resources/assets/vendor/libs/select2/select2.scss', 'resources/assets/vendor/libs/@form-validation/form-validation.scss', 'resources/assets/vendor/libs/sweetalert2/sweetalert2.scss']) @endsection @section('vendor-script') @vite(['resources/assets/vendor/libs/moment/moment.js', 'resources/assets/vendor/libs/datatables-bs5/datatables-bootstrap5.js', 'resources/assets/vendor/libs/select2/select2.js', 'resources/assets/vendor/libs/@form-validation/popular.js', 'resources/assets/vendor/libs/@form-validation/bootstrap5.js', 'resources/assets/vendor/libs/@form-validation/auto-focus.js', 'resources/assets/vendor/libs/sweetalert2/sweetalert2.js', 'resources/assets/vendor/libs/cleavejs/cleave.js', 'resources/assets/vendor/libs/cleavejs/cleave-phone.js']) @endsection @section('page-script') @vite('resources/assets/js/app-user-list.js') @vite('resources/assets/js/doctors-list.js') @endsection @section('content')
@if (session('success')) @endif @if (session('error')) @endif
Patient Details
Header Image

Patient Information

MRN: {{ $patient->mrn }}

Name: {{ $patient->name }}

Gender: {{ $patient->gender }}

Age: {{ $patient->age }}

@if ($patient->phone)

Phone: {{ $patient->phone }}

@endif @if ($patient->address)

Address: {{ $patient->address }}

@endif @if ($patient->city)

City: {{ $patient->city }}

@endif @if ($patient->height)

Height: {{ $patient->height }} FT IN

@endif

Weight: {{ $patient->weight }} KG

Pulse: {{ $patient->pulse }} BPM

@if ($patient->blood_pressure)

Blood Pressure: {{ $patient->blood_pressure }} MM HG

@endif

Temprature: {{ $patient->temperature }} °C


Footer Image
@endsection