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

Location & Section Details

District: {{ $section->office->district->district ?? 'N/A' }}  || Taluk: {{ $section->office->societytaluk->taluk_name ?? 'N/A' }}  || Office: {{ $section->office->name }}  || Office Type: {{ $section->office->officeType->name ?? 'N/A' }}  || Section: {{ $section->name }}

Seats

Back
@csrf

Choose Reporting seat

@if ($existingSeats->isEmpty()) No other seats available in this section yet. @endif


@foreach ($seats as $index => $seat) @endforeach
SL No Seat Name Role Reporting Seat Staff Seats Status Actions
{{ $index + 1 }} {{ $seat->name }} {{ $seat->role->name ?? '—' }} @if ($seat->reportingSeat) {{ $seat->reportingSeat->name }} ({{ $seat->reportingSeat->office->name ?? '—' }}) @else Not Assigned @endif Staff {{ $seat->status ? 'Active' : 'Inactive' }} @php $encryptedId = Crypt::encryptString($seat->id); @endphp
@csrf @if ($seat->status) @else @endif
{{ $seats->links() }}
@endsection @push('scripts') @endpush