@extends('layouts.app') @section('title', 'Manage Schools | Super Admin') @section('sidebar-menu') @endsection @section('breadcrumb') Home / Schools @endsection @section('content')
Registered Institutions
Add New School
@foreach($schools as $school) @endforeach
# School Name Code Type Students Status Action
{{ $loop->iteration }} {{ $school->name }} {{ $school->code }} {{ ucfirst($school->type) }} {{ number_format($school->student_count) }} {{ ucfirst($school->status) }} Edit
@csrf @method('DELETE')
@endsection