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