@extends('app') @section('content')

Today's Patient List

@can('patient-create')   Add Patient @endcan

@can('patient-view') @canany(['patient-edit','patient-update','patient-remove']) @endcanany @if(count($patients) > 0) @foreach($patients as $key => $patient) @endforeach @endif @canany(['patient-edit','patient-update','patient-remove']) @endcanany
Patient Name Patient ID Mobile Blood Group StatusAction
{{$patient->user->full_name}} {{$patient->patient_id}} {{$patient->user->mobile_no}} {{$patient->blood_group}} @canany(['patient-edit','patient-update']) @endcanany @can('patient-remove') @endcan
Patient Name Mobile Blood Group StatusAction
@endcan
@endsection @section('script') @endsection