| ID |
Name |
Institution Type |
DSAR Type |
Tags |
Created |
|
@if(count($institutions))
@foreach($institutions as $institution)
| {{ $institution->displayId }} |
@if($institution->is_prioritised)
@endif
{{ $institution->display_name }}
|
{{ $institution->type?->display_name }} |
{{ $institution->dsarType?->display_name }}
{{ ucwords($institution->send_type ?? 'N/A') }}
|
|
{{ $institution->created_at->format("d/m/Y H:i") }} |
@can('view', $institution)
@endcan
@can('edit', $institution)
@endcan
@if($institution->care_settings_count === 0 && $institution->claims_count === 0)
@can('delete', $institution)
@endcan
@endif
|
@endforeach
@else
| No lead institutions found. |
@endif
{{ $institutions->links() }}