@extends('app') @section('head_title', $listing->title.' | '.getcong('site_name') ) @section('head_image', URL::asset('upload/listings/'.$listing->featured_image.'-b.jpg')) @section('head_url', Request::url()) @section("content")
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif @if(Session::has('error_flash_message'))
{{ Session::get('error_flash_message') }}
@endif @if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{trans('words.description')}}

{!!$listing->description!!}

@if(checkUserPlanFeatures($listing->user_id,'plan_gallery_images_option')==1 AND count($listing_gallery_images) > 0)

{{trans('words.photos_gallery')}}

@endif @if(checkUserPlanFeatures($listing->user_id,'plan_amenities_option')==1 AND $listing->amenities)

Amenities

    @foreach(explode(',', $listing->amenities) as $amenities_info)
  • {{$amenities_info}}
  • @endforeach
@endif @if(checkUserPlanFeatures($listing->user_id,'plan_video_option')==1 AND $listing->video)

{{trans('words.video')}}

{!!$listing->video!!}
@endif @if($listing->google_map_code)

{{trans('words.location')}}

{!!$listing->google_map_code!!}
@endif

{{trans('words.reviews')}}({{\App\Models\Reviews::getTotalReview($listing->id)}})


{{trans('words.add_review')}}


{!! Form::open(array('url' => array('submit_review'),'class'=>'row mt-4','name'=>'review_form','id'=>'review_form','role'=>'form','enctype' => 'multipart/form-data')) !!}
{!! Form::close() !!}
@endsection