@extends('layouts.admin') @section('title', 'Seats List') @section('content')
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 }}
| 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 |