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

School Structure / Branch Management

Add Branch
@forelse($branches as $branch) @empty @endforelse
Branch Name School Name Contact Person Contact Number Address Actions
{{ $branch->name }} {{ $branch->school->name }} {{ $branch->contact_person ?? 'N/A' }} {{ $branch->contact_number ?? 'N/A' }} {{ $branch->address ?? 'N/A' }}
@csrf @method('DELETE')
No branches found. Click "Add Branch" to create one.
@endsection