@extends('Admin.layouts.app') @section('title', 'Appointment View') @section('content')
{{ $appointment->provider ? $appointment->provider->name : '---' }}
{{ $appointment->seeker ? $appointment->seeker->name : '---' }}
{{ $serviceName }}
{{ $appointment->type }}
{{ Carbon\Carbon::parse($appointment->booking_date)->format('m-d-Y') }}
{{ $appointment->start_time }}
{{ $appointment->end_time }}
{{ $appointment->service_amount }} USD
{{ $appointment->status }}
{{ $appointment->cancel_reason }}