@extends('layouts/layoutMaster') @section('title', 'Clinics') @section('content')

Clinics

@can('create', App\Models\Clinic::class) Create Clinic @endcan
@forelse($clinics as $clinic) @empty @endforelse
Name Phone Email Address Actions
{{ $clinic->name }} {{ $clinic->phone ?? '-' }} {{ $clinic->email ?? '-' }} {{ $clinic->address ?? '-' }}
@can('view', $clinic) @endcan @can('update', $clinic) @endcan @can('delete', $clinic)
@csrf @method('DELETE')
@endcan
No clinics found
{{ $clinics->links() }}
@endsection