{{--

Doctors

{{-- New Doctor
@foreach ($doctors as $doctor) @if ($doctor->status == 'accepted') @elseif($doctor->status == 'rejected') @else @endif @endforeach
ID Name Speciality Status Actions
# {{ $loop->iteration }} {{ $doctor->name }} {{ $doctor->specialty->name_en ?? '' }} - {{ $doctor->specialty->name_ar ?? '' }} {{ $doctor->status ?? '' }}{{ $doctor->status ?? '' }}{{ $doctor->status ?? '' }}
@if ($doctor->status == 'pending')   
@csrf @method('PUT')
  
@csrf @method('PUT')
@endif
--}}