@extends('app') @section('head_title', 'Search Listings | '.getcong('site_name') ) @section('head_url', Request::url()) @section('content')
@include("_particles.sidebar")
@foreach($listings as $listing)

{{$listing->title}}

{{str_limit($listing->address,50)}}

@for($x = 0; $x < 5; $x++) @if($x < $listing->review_avg) @else @endif @endfor ({{\App\Reviews::getTotalReview($listing->id)}})
@endforeach
@endsection