@if (file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot'))) @vite(['resources/css/app.css', 'resources/js/app.js']) @else @endif
@if (Route::has('login')) @endif

Let's get started

Laravel has an incredibly rich ecosystem.
We suggest starting with the following.

{{-- Laravel Logo --}} {{-- Light Mode 12 SVG --}} {{-- Dark Mode 12 SVG --}}
@if (Route::has('login')) @endif
Manage Appointment 11
{{ $visit->patient->user->name ?? 'John Doe' }}
{{ $visit->patient->gender ?? 'Male' }}
{{ $visit->patient->blood_type ?? 'O+' }}
{{ $visit->patient->user->mobile ?? '+1 234 567 890' }}
{{ $visit->scheduled_at ?? 'June 4, 2025 - 10:00 AM' }}
{{ $visit->doctor->speciality->name ?? 'Cardiology' }}
Confirmed
User Profile
Complain Details
@if (session()->has('success')) @endif
Diagnosis
@if (session()->has('success_diagnosis')) @endif {{--
--}} {{-- --}} {{--
--}}
@foreach($diagnosis as $index => $tag) {{ $tag }} @endforeach
Required Analysis
@if (session()->has('success_analysis')) @endif
@foreach($analyses as $index => $item)
@if($index > 0) @endif
@endforeach
Prescription
@foreach($prescriptions as $index => $item)
@if(count($prescriptions) > 1) @endif
@endforeach
User Profile
{{ auth()->user()->name ?? 'User Name' }}
{{ auth()->user()->email ?? 'email@example.com' }}
{{ auth()->user()->mobile ?? 'N/A' }}
User Files
@forelse($userFiles ?? [] as $file) @empty
No files available
@endforelse
@push('style') @endpush @push('js') @endpush