@extends('admin.layouts.app') @section('title', 'View Patient') @section('content')

View Patient

@csrf
@php $medicalRecords = json_decode($patient->medical_records, true); @endphp @if (!empty($medicalRecords))

Uploaded at : {{\Carbon\Carbon::parse($patient->medical_records_uploaded_at)->format('m/d/Y H:i:s')}}

@endif
@php $illustrations = json_decode($patient->illustrate_doc, true); @endphp @if (!empty($illustrations))

Uploaded at : {{\Carbon\Carbon::parse($patient->illustrate_doc_uploaded_at)->format('m/d/Y H:i:s')}}

@endif
@php $policies = json_decode($patient->policy_doc, true); @endphp @if (!empty($policies))

Uploaded at : {{\Carbon\Carbon::parse($patient->policy_doc_uploaded_at)->format('m/d/Y H:i:s')}}

@endif
@php $randomDocs = json_decode($patient->random_doc); @endphp @if (!empty($randomDocs))

Uploaded at : {{\Carbon\Carbon::parse($patient->random_doc_uploaded_at)->format('m/d/Y H:i:s')}}

@endif
Cancel
@endsection @section('scripts') @endsection