@extends('frontend.layouts.app') @section('content') Services @foreach($services as $service) {{ $service->icon }} {{ $service->title }} {{ $service->description }} @endforeach Featured Properties @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 ) }} location_city {{ ucfirst($property->city) }} place {{ ucfirst($property->address) }} check_box {{ ucfirst($property->type) }} for {{ $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 Testimonials @foreach($testimonials as $testimonial) {{$testimonial->name}} {{$testimonial->testimonial}} @endforeach Recent Blog @foreach($posts as $post) @if(Storage::disk('public')->exists('posts/'.$post->image) && $post->image) @endif {{ str_limit($post->title,18) }} {!! str_limit($post->body,120) !!} person {{$post->user->name}} @foreach($post->categories as $key => $category) folder {{$category->name}} @endforeach @foreach($post->tags as $key => $tag) label {{$tag->name}} @endforeach watch_later {{$post->created_at->diffForHumans()}} @endforeach @endsection @section('scripts') @endsection
{{ $service->description }}
{{$testimonial->testimonial}}