@extends('backend.master') @section('title') {{ $title }} @endsection @section('content')
@forelse ($property as $key => $row) @if (hasPermission('user_update') || hasPermission('user_delete')) @endif @empty @endforelse
{{ _trans('common.SR No.') }} {{ _trans('common.Name') }} {{ _trans('common.Type') }} {{ _trans('common.status') }}
{{ ++$key }} {{ $row->type == 1 ? 'Commercial' : 'Residential' }}
{{ _trans('common.Status') }}: {{ $row->completion == 1 ? 'Completed' : 'Under Construction' }}
{{ _trans('common.Unit') }}: {{ $row->total_unit }}
{{ _trans('common.Occupied') }}: {{ $row->total_occupied }}
{{ _trans('common.Rent') }}: {{ $row->total_rent }}
{{ _trans('common.Sell') }}: {{ $row->total_sell }}
{{ _trans('common.Size') }}: {{ $row->size }} {{ _trans('common.sqft') }}
{{ _trans('common.Dining Combined') }}: {{ $row->dining_combined == 1 ? 'Yes' : 'No' }}
{{ _trans('common.Bedroom') }}: {{ $row->bedroom }}
{{ _trans('common.Bathroom') }}: {{ $row->bathroom }}
{{ _trans('common.Rent Amount') }}: {{ $row->rent_amount }}
@if ($row->flat_no) {{ _trans('common.Flat No.') }}: {{ $row->flat_no }} @endif
{{ _trans('common.Address') }}: {{ @$row->location->address }}
{{ _trans('common.State') }}: {{ @$row->location->state->name }}
{{ _trans('common.City') }}: {{ @$row->location->city->name }}
{{ _trans('common.Post Code') }}: {{ @$row->location->post_code }}
{{ _trans('common.Country') }}: {{ @$row->location->country->name }}
{{ $row->deal_type == 1 ? 'Rent' : 'Sell' }}
@if ($row->status == App\Enums\Status::ACTIVE) {{ _trans('common.active') }} @else {{ _trans('common.inactive') }} @endif

No data available

Please add new entity regarding this table

@endsection