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

Appointments

@foreach($appointment as $appoint) @endforeach
S.N. Name Email Phone Call Type Date Time Action
{{ $appoint->hash_code ?? ''}} {{ $appoint->name }} {{ $appoint->email }} {{ $appoint->phone }} {{ ucfirst($appoint->call_type) }} {{ $appoint->date }} {{ $appoint->time ?? '' }} View Details
@endsection @section('script') @endsection