@extends('layouts.admin') @section('title','Section List') @section('content')

Office Details

Office: {{ $office->name }} || Office Type: {{ $office->officeType->name ?? 'N/A' }} || District: {{ $office->district->district ?? 'N/A' }}

Sections

Back

@csrf
Min 3, Max 100 characters


@if($sections->count() > 0) @foreach ($sections as $index => $section) @endforeach @else @endif
# Section Name Status Manage Seats Actions
{{ $index + 1 }} {{ $section->name }} @if($section->status == 1) Active @else Inactive @endif Manage Seat @if($section->status == 1 && $section->able_to_deactivate) @endif
No Section found.
{{ $sections->links() }}
@endsection @push('scripts') @endpush