@extends('layouts.main') @section('main-container')
{{-- Success Message --}} @if(session('success')) @endif {{-- 🔍 Filter Card --}}
Filter Asset Handovers
{{-- Action buttons --}}
Reset
{{-- 📋 Data Table --}}

Handover Records

@forelse ($handovers as $index => $handover) @empty @endforelse
S.N Unit State District Block Panchayat Village Year App-Code Respondent Action
{{ $handovers->firstItem() + $index }} {{ $handover->unit->name ?? 'N/A' }} {{ $handover->state->name ?? 'N/A' }} {{ $handover->district->name ?? 'N/A' }} {{ $handover->block->name ?? 'N/A' }} {{ $handover->panchayat->name ?? 'N/A' }} {{ $handover->village->name ?? 'N/A' }} {{ $handover->financialYear->name ?? 'N/A' }} {{ $handover->application_code }} {{ $handover->name_of_respondent }} @if(in_array($handover->baseline_id, $existingHandoverIds)) View @else Hand Over @endif
No records found.
{{-- Pagination --}}
{{ $handovers->appends(request()->query())->links() }}
@endsection