@extends('layouts.backend.master') @section('content')

Appointments

@if($appointments->isEmpty())

No appointments found.

@else @foreach($appointments as $appointment) @endforeach
Name Gender Mobile Email Appointment Date Action
{{ $appointment->name }} {{ $appointment->gender }} {{ $appointment->mobile }} {{ $appointment->email }} {{ $appointment->appointment_date }} View
@endif @endsection