@extends('layouts.app')
@section('bread-crumb')
@endsection
@section('content')
Total of {{$patients->total()}} patient(s)
| Type |
Patient |
Age |
Gender |
Address |
Date Encoded |
|
@foreach ($patients as $p)
| {{$p->referral_type}} |
{{$p->patient}} |
{{$p->age}} |
{{$p->sex}} |
{{$p->address}} |
{{$p->created_at}} |
|
@endforeach
{{$patients->links()}}
@endsection
@section('script')
@endsection