@extends("app") @section('head_title', 'My Properties | '.getcong('site_name') ) @section('head_url', Request::url()) @section("content")
@include("_particles.sidebar_user")
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif
@if(Auth::User()->usertype!='Agents')@endif @foreach($propertieslist as $i => $property) @if(Auth::User()->usertype!='Agents') @endif @endforeach
Image Property StatusFeaturedActions
{{ $property->property_name }}

{{ $property->address }}

${{ $property->price }}

@if($property->status==1) Published @else Pending @endif @if($property->featured_property!=1) @if(env('STRIPE_KEY')!='' AND getcong('featured_property_price')!='')
{{ csrf_field() }}
@endif @else Yes @endif
View Edit Delete
@include('_particles.pagination', ['paginator' => $propertieslist])
@endsection