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