@extends('layouts.adminapp') @section('content') {{-- Property --}}

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

{{__('lng.PropertyTable')}}
{{__('lng.CreateNew')}}
@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')

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

@endif
@endsection