@extends('layouts.admin-layout') @section('title', 'All Appointment Listing') @section('content')

All Appointments for {{ $email }}

Back to Appointment List {{-- --}} @foreach ($appointments as $appoint) {{-- --}} @endforeach
S.N. Name Email Phone Call Type Date TimeHash Code
{{ $appoint->hash_code ?? ''}} {{ $appoint->name }} {{ $appoint->email }} {{ $appoint->phone }} {{ ucfirst($appoint->call_type) }} {{ $appoint->date }} {{ $appoint->time }}{{ $appoint->hash_code }}
@endsection @section('script') @endsection