@extends('user.layouts.template') @section('style') @endsection @section('content') @php $permission = session()->get('permissions'); @endphp
@if ($can_create_property) @if ($permission === 'Admin' || $permission['Property Management']['creat']) @endif @else
@endif
@foreach($properties as $property) @endforeach
Property Name City State Property Type Total Floors Total RSF Occupancy % Vacant SF Expiration < 12 Months Stacking Plan Action
{{ $property->name }} {{ $property->city }} {{ $property->state }} @if($property->type == 1) Commercial @elseif($property->type == 2) Mixed-Use @elseif($property->type == 3) Special Purpose @elseif($property->type == 4) Condo @else - @endif {{ $property->no_of_floors ?? '0' }} {{ !empty($property->rentable_sf) ? $property->rentable_sf : '-' }} {{ round($property->occupancy_rate) ?? '0' }}% {{ !empty($property->vacant_sf) ? $property->vacant_sf : '-' }} {{ !empty($property->lease_expirations) ? $property->lease_expirations : '-' }}
@if ($permission === 'Admin' || $permission['Property Management']['edit']) @endif @if ($permission === 'Admin' || $permission['Property Management']['delet']) @endif
@endsection @section('script') @endsection