@extends('layouts.master') @section('title') {{ $patient->name }} @endsection @section('content')

{{ $patient->name }}


@isset($patient->Patient->birthday)

Age : {{ $patient->Patient->birthday }} ({{ \Carbon\Carbon::parse($patient->Patient->birthday)->age }} Years)

@endisset @isset($patient->Patient->birthday)

Gender : {{ $patient->Patient->gender }}

@endisset @isset($patient->Patient->weight)

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

@endisset @isset($patient->Patient->height)

Height : {{ $patient->Patient->height }}

@endisset @isset($patient->Patient->blood)

Blood Group : {{ $patient->Patient->blood }}

@endisset @isset($patient->Patient->phone)

Phone : {{ $patient->Patient->phone }}

@endisset @isset($patient->Patient->adress)

Address : {{ $patient->Patient->adress }}

@endisset
@endsection @section('header') @endsection @section('footer') @endsection