@extends('admin.admin_dashboard') @section('admin')
@if (Auth::user()->can('schools.view'))
@foreach ($schools as $key => $school) @endforeach
# School Name Address Contact Action
{{ $key + 1 }} {{ ucfirst($school->school_name) }} {{ $school->address ?? 'N/A' }} {{ $school->school_contact ?? 'N/A' }}
@endif
@endsection