@extends('layouts.adminapp') @section('title') {{ __('lng.Property') }} - {{ __('lng.View') }} @endsection @section('open_rent_asset', 'open') @section('active_rent_asset', 'active') @section('active_property', 'active') @section('content')

{{ __('lng.Property') }}

{{ __('lng.Back') }}
{{ $Property->title }}
  • {{ __('lng.PropertyType') }}

    {{ $Property->propertytype->title ?? 'none' }}

  • {{ __('lng.SquareFeet') }}

    {{ $Property->squarefeet }}

  • {{ __('lng.Address') }}

    {{ $Property->address }}

  • {{ __('lng.Latitude') }}

    {{ $Property->latitude }}

  • {{ __('lng.Longitude') }}

    {{ $Property->longitude ?? 'none' }}

  • {{ __('lng.Amount') }}

    @currency($Property->amount)

  • {{ __('lng.AmountCaliculatedDate') }}

    @php $DTs = date("d-m-Y",strtotime($Property->amount_caliculated_date)); @endphp {{ $DTs }}

  • {{ __('lng.Narration') }}

    {{ $Property->narration }}

@endsection