@extends('app') @section('content') Today's Patient List Home {{-- Outdoor --}} Patient List @can('patient-create') Add Patient @endcan @can('patient-view') Patient Name Patient ID Mobile Blood Group Status @canany(['patient-edit','patient-update','patient-remove']) Action @endcanany @if(count($patients) > 0) @foreach($patients as $key => $patient) {{$patient->user->full_name}} {{$patient->patient_id}} {{$patient->user->mobile_no}} {{$patient->blood_group}} Inactive Active @canany(['patient-edit','patient-update']) @endcanany @can('patient-remove') @endcan @endforeach @endif Patient Name Mobile Blood Group Status @canany(['patient-edit','patient-update','patient-remove']) Action @endcanany @endcan @endsection @section('script') @endsection