@extends('Admin/layout/master') @section('title', 'Patients List') @section('content')
Patients List
@can('patient create') @endcan
@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 }} @can('patient show') @endcan @can('patient delete') @endcan
@endsection