@extends('admin::layouts.master') @section('title') Appointment Message @endsection @section('breadcrumb') @php $breadcrumbData = [ [ 'title' => 'Appointment Message', 'link' => 'null', ], [ 'title' => 'Dashboard', 'link' => route('dashboard'), ], [ 'title' => 'Appointment Message', 'link' => null, ], ]; @endphp @include('admin::layouts.partials.breadcrumb', $breadcrumbData) @endsection @section('content')
Name: | {{ $appointment->full_name ?? 'N/A' }} |
---|---|
Email: | {{ $appointment->email ?? 'N/A' }} |
Contact No.: | {{ $appointment->contact_no ?? 'N/A' }} |
Doctor: | {{ $appointment->doctorDetail->name ?? 'N/A' }} |
Subject: | {{ $appointment->subject ?? 'N/A' }} |
Message: | {{ $appointment->feedback ?? 'N/A' }} |