@extends('user.layouts.app') @section('body_class', 'accommodation') @push('styles') @endpush @section('content')

Accommodation

@if(!empty($accomodation))

{!! $accomodation->description !!}

@endif
@if($accomodation_sections->isNotEmpty())
    @if(!empty($accomodation_sections)) @foreach($accomodation_sections as $value) @if(strtolower(trim($value->section_title)) === 'room rates' && !Auth::check()) @continue @endif
  • {{$value->section_title}}
  • @endforeach @endif
  • Room Reservation Request
@endif
@if($accomodation_sections->isNotEmpty()) @foreach($accomodation_sections as $bookingRules) @if(strtolower(trim($bookingRules->section_title)) === 'room rates' && !Auth::check()) @continue @endif

{{ $bookingRules->section_title }}

{!! $bookingRules->section_description !!}
@endforeach @endif

Room Reservation Request

@endsection @section('footer') @endsection @push('scripts') @endpush