@extends('app') @section('head_title', $listing->title.' | '.getcong('site_name') ) @section('head_url', Request::url()) @section('content')
slide images

{{$listing->title}}

{{$listing->address}}

@for($x = 0; $x < 5; $x++) @if($x < $listing->review_avg) @else @endif @endfor ({{\App\Reviews::getTotalReview($listing->id)}})
@if($listing_gallery_images) @endif @if($listing->video) @endif @if($listing->map_lat and $listing->map_long) @endif
{!!$listing->description!!}
@include("_particles.user_reviews")

Send Enquiry

{!! Form::open(array('url' => 'inquiry_send','class'=>'','id'=>'inquiry_form','role'=>'form')) !!}
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif
{!! Form::close() !!}
@if($listing->working_hours_mon and $listing->working_hours_tue and $listing->working_hours_wed and $listing->working_hours_thurs and $listing->working_hours_fri and $listing->working_hours_sat and $listing->working_hours_sun)

Working Hours

Mon{!!$listing->working_hours_mon!!}
Tue{!!$listing->working_hours_tue!!}
Wed{!!$listing->working_hours_wed!!}
Thu{!!$listing->working_hours_thurs!!}
Fri{!!$listing->working_hours_fri!!}
Sat{!!$listing->working_hours_sat!!}
Sun{!!$listing->working_hours_sun!!}
@endif

Amenities

    @foreach(explode(',', $listing->amenities) as $amenities_info)
  • {{$amenities_info}}
  • @endforeach

{{ \App\User::getUserFullname($listing->user_id) }}

{{ \App\User::getUserInfo($listing->user_id)->address }}
{{ \App\User::getUserInfo($listing->user_id)->contact_email }}
@endsection