@extends('frontend.layouts.app') @section('styles') @endsection @section('content')

Properties

@foreach($cities as $city) @endforeach
@foreach($properties as $property)
@if(Storage::disk('public')->exists('property/'.$property->image) && $property->image) @else @endif @if($property->featured == 1) star @endif
{{ str_limit( $property->title, 18 ) }}
place {{ ucfirst($property->city) }}
language {{ ucfirst($property->address) }}
check_box {{ ucfirst($property->type) }}
check_box For {{ ucfirst($property->purpose) }}
${{ $property->price }}
check_box Bedroom: {{ $property->bedroom}} check_box Bathroom: {{ $property->bathroom}} check_box Area: {{ $property->area}} Square Feet comment {{ $property->comments_count}}
@endforeach
{{ $properties->links() }}
@endsection @section('scripts') @endsection