Institutes

Institutes

Manage your institutes

@if (isset($institutes) && count($institutes) > 0)
@foreach ($institutes as $institute) @endforeach
# Name Location Phone Action
{{ $institute->id }} {{ $institute->name }} {{ $institute->location }} {{ $institute->phone ?? '-' }} Edit
@csrf @method('DELETE') Delete
@if ($institutes->hasPages()) @endif @else
No institute found!
@endif
@include('admin.modals.addInstitute')