@extends('Admin/layout/master') @section('title', 'Appointment List') @section('content')
Appointment List
@can('role create') @endcan
@foreach ($appointments as $index => $appointment) @endforeach
Index Physician Patient start Date End Date Action
{{ ++$index }} {{ $appointment->physicain->fisrt_name }} {{ $appointment->patient->first_name }} {{ $appointment->start_date }} {{ $appointment->end_date}} @can('role update') @endcan @can('role delete') @endcan
@endsection