@extends('front.layouts.master') @section('title', isset($title) ? $title : 'Home') @section('description', isset($description) ? $description : '') @section('keywords', isset($keywords) ? $keywords : '') @section('content')
@foreach (reservations() as $reservation)
{{ langConverter($reservation->en_name,$reservation->fr_name) }}
{!! Str::limit(langConverter($reservation->en_description,$reservation->fr_description),500) !!}
{{ __('Discover more') }}
{!! Str::limit(langConverter($reservation->en_discover,$reservation->fr_discover),120) !!}
{{ __('Location') }}
{!! Str::limit(langConverter($reservation->en_location,$reservation->fr_location),120) !!}
@endforeach
@endsection