@extends('layouts.main') @section('main-container')
@if(session('success'))
{{ session('success') }}
@endif
@forelse ($structures as $index => $structure) @empty @endforelse
# State District Block Panchayat Village Head of Household Category Family Members Land (Acre) Action
{{ $index + 1 }} {{ $structure->state->name ?? '-' }} {{ $structure->district->name ?? '-' }} {{ $structure->block->name ?? '-' }} {{ $structure->panchayat->name ?? '-' }} {{ $structure->village->name ?? '-' }} {{ $structure->head_of_household_name ?? '-' }} {{ $structure->category ?? '-' }} {{ $structure->family_members ?? '-' }} {{ $structure->land_holding_acre ?? '-' }} ✏️
@csrf @method('DELETE')
No structures found
{{-- Pagination --}}
{{ $structures->links() }}
@endsection