@extends('admin-panel.layout') @section('page-title', 'Doctor Appointment') @section('page-content') @if ( $doctors['count'] == 0 )
No Doctors Available
@else
@foreach ($doctors['data'] as $i => $doctor)
Card image cap
{{ $doctor['doctor_name'] }}

{{ $doctor['doctor_speciality'] }} • {{ $doctor['doctor_mcr'] }}

{{ ( $doctor['doctor_has_session'] ? 'Session Doctor' : 'Appointment Doctor') }}

Select
@endforeach
@endif
@include('admin-panel.appointments.parts._modal') @include('admin-panel.appointments.parts._offcanvas') @include('admin-panel.appointments.script') @endsection