@include('components.project-details', ['project' => $project])
{{-- NEW Table from AnnexureTwo --}}
Sl. No. |
Map No. |
Identification No |
Address |
Name of Owner |
Carpet Area |
Structure Use |
Eligibility Status |
{{-- Status | --}}
Action |
@forelse ($annexureTwos as $item)
{{ $loop->iteration }} |
{{ $item->map_id ?? 'N/A' }} |
{{ $item->structure_id ?? 'N/A' }} |
{{ $item->address ?? 'N/A' }} |
@if ($item->new_owner_name)
{{ $item->owner_name }}
{{ $item->new_owner_name }}
@else
{{ $item->owner_name ?? 'N/A' }}
@endif
|
{{ $item->carpet_area ?? 'N/A' }} |
@switch($item->structure_use)
@case('1')
Residential
@break
@case('2')
Commercial
@break
@case('3')
Resi-Cum-Comm
@break
@case('4')
Others
@break
@default
N/A
@endswitch
|
{{ $item->eligibility_status ?? 'N/A' }} |
{{--
{{ $item->status ?? ucfirst($item->status) }}
| --}}
{{--
--}}
|
@empty
No records found.
|
@endforelse
@include('layouts.footer')