@extends('Admin/layout/master')
@section('title','Patients List')
@section('content')
Index |
First Name |
Last Name |
Email |
Phone |
Patient Type |
Action |
@foreach ($patients as $index => $patient)
{{ ++$index }} |
{{ $patient->first_name }} |
{{ $patient->last_name }} |
{{ $patient->email }} |
{{ $patient->phone }} |
{{ $patient->patient_type }} |
|
@endforeach
@endsection