@include('components.project-details', ['project' => $project])
Sl. No. |
Structure ID |
Name of the Owner |
Type of Use |
Date of Allotment |
Location |
Building Name (Building No.) |
Wing |
Room No.
(Floor No.)
|
Action |
@if ($allotments->isEmpty())
No Records Found |
@else
@foreach ($allotments as $allotment)
{{ $loop->iteration }}
{{-- | {{ $loop->iteration + ($surveys->currentPage() - 1) * $surveys->perPage() }} --}}
|
{{ $allotment->annexureTwo->structure_id ?? '-' }}
{{ $allotment->annexureTwo->map_id ?? '-' }}
|
{{ $allotment->annexureTwo->new_owner_name ?? $allotment->annexureTwo->owner_name ?? '-' }} |
@if ($allotment->annexureTwo->structure_use == '1')
Residential
@elseif ($allotment->annexureTwo->structure_use == '2')
Commercial
@elseif ($allotment->annexureTwo->structure_use == '3')
Resi-Cum-Comm
@elseif ($allotment->annexureTwo->structure_use == '4')
Others
@else
N/A
@endif
|
{{ $allotment->created_at->format('d M Y') }}
|
{{ $allotment->inventoryBuildingRoom->location->location }}
|
{{ $allotment->inventoryBuildingRoom->building->building_name }} ({{ $allotment->inventoryBuildingRoom->building->building_no }})
|
{{ $allotment->inventoryBuildingRoom->wing_name ?? '-' }}
|
{{ $allotment->inventoryBuildingRoom->room_no }} |
@if ($allotment->annexureTwo->survey_id)
@else
@endif
|
@endforeach
@endif
{{-- --}}
@include('layouts.footer')