@extends('layouts.admin') @section('title', 'Pending Doctors') @section('content')
Pending Doctor Approvals
@foreach ($doctors as $d) @endforeach
ID Name Email Registered Action
{{ $d->id }} {{ $d->name }}
View
{{ $d->email }} {{ $d->created_at?->format('Y-m-d H:i') }}
@csrf
{{ $doctors->links() }}
@endsection