@extends('layouts.admin') @section('title', 'School Management') @section('page-title', 'School Management') @section('content')

School Structure / School Management

Add School
@forelse($schools as $school) @empty @endforelse
ID School Name Address Contact Actions
#{{ $school->id }} {{ $school->name }} {{ $school->address ?? 'N/A' }} {{ $school->contact ?? 'N/A' }}
@csrf @method('DELETE')
No schools found. Click "Add School" to create one.
@endsection