@extends('layouts.admin-layout')
@section('title', 'All Appointment Listing')
@section('content')
All Appointments for {{ $email }}
Back to Appointment List
| S.N. |
Name |
Email |
Phone |
Call Type |
Date |
Time |
{{-- Hash Code | --}}
@foreach ($appointments as $appoint)
| {{ $appoint->hash_code ?? ''}} |
{{ $appoint->name }} |
{{ $appoint->email }} |
{{ $appoint->phone }} |
{{ ucfirst($appoint->call_type) }} |
{{ $appoint->date }} |
{{ $appoint->time }} |
{{-- {{ $appoint->hash_code }} | --}}
@endforeach
@endsection
@section('script')
@endsection