@extends("app") @section('head_title', 'Properties For Rent | '.getcong('site_name') ) @section('head_url', Request::url()) @section("content")
@foreach($properties as $i => $property)
@if($property->featured_property==1)Featured@endif Image of Property {{getcong('currency_sign').' '.$property->price}}
{{ str_limit($property->property_name,35) }}
{{ str_limit($property->address,40) }}
{!! str_limit($property->description,100) !!}
{{$property->land_area}}
m2
{{$property->bedrooms}}
bed
{{$property->bathrooms}}
bath
More
@endforeach
@include('_particles.pagination', ['paginator' => $properties])
@endsection