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

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

{{ __('lng.PropertyTable') }}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; @endphp @foreach ($Properties as $Property) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Title') }} {{ __('lng.PropertyType') }} {{ __('lng.Address') }} {{ __('lng.Amount') }} {{ __('lng.Photo') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $Property->title }} {{ $Property->propertytype->title }} {{ $Property->address }} @currency($Property->amount) avatar
{{--
--}}
@csrf @method('delete')
{{--
--}}

{{ __('lng.Showing') }} {{ $Properties->count() }} {{ __('lng.Items') }}

@endif
@endsection