@include('layouts.header', ['title' => 'Allotment Details'])
@include('layouts.navbar') @include('layouts.sidebar')

Allotment Details

Back
{{-- Name of Occupant --}}
PAP Name:
{{ $allotment->annexureTwo->new_owner_name ?? $allotment->annexureTwo->owner_name ?? '-' }}
{{-- Date --}}
Allotment Date:
@if ($allotment->lottery?->created_at) {{ $allotment->lottery->created_at->format('d M Y') }} @else N/A @endif
{{-- Location --}}
Location:
{{ $allotment->inventoryBuildingRoom->location->location }}
{{-- Building Name --}}
Building Name:
{{ $allotment->inventoryBuildingRoom->building->building_name }}
{{-- Building No --}}
Building No:
{{ $allotment->inventoryBuildingRoom->building->building_no }}
{{-- Wing --}}
Wing:
{{ $allotment->inventoryBuildingRoom->wing_name }}
{{-- Floor --}}
Floor:
{{ $allotment->inventoryBuildingRoom->floor_no }}
{{-- Room No --}}
Room No:
{{ $allotment->inventoryBuildingRoom->room_no }}

Documents

@if (isset($allotment->indemnity_bond))
@if (isset($allotment->signed_taba))
@endif @endif
@if (!isset($allotment->indemnity_bond))
@csrf

Upload Indemnity Bond

@error('indemnityBond')
{{ $message }}
@enderror
@endif @if (isset($allotment->indemnity_bond) && !isset($allotment->signed_taba))
@csrf

Upload Signed Taba

@error('signedTaba')
{{ $message }}
@enderror
@endif
@include('layouts.footer')
@stack('scripts')