@php Theme::asset()->container('footer')->usePath()->add('lightgallery-css', 'plugins/lightgallery/css/lightgallery.min.css'); Theme::asset()->container('footer')->usePath()->add('lightgallery-js', 'plugins/lightgallery/js/lightgallery.min.js'); Theme::set('pageTitle', $room->name); $nights = (int) $startDate->diffInDays($endDate); @endphp
@foreach ($room->images as $img) {{ $room->name }} @endforeach
@foreach ($room->images as $img) {{ $room->name }} @endforeach

{{ $room->name }}

@if ($nights > 1) {{ __(':price for :nights nights', ['price' => format_price($room->getRoomTotalPrice($startDate, $endDate)), 'nights' => $nights]) }} @else {{ __(':price ', ['price' => format_price($room->getRoomTotalPrice($startDate, $endDate))]) }} @endif
{!! BaseHelper::clean($room->content) !!} @if ($room->amenities->isNotEmpty())

{{ __('Amenities') }}

@foreach ($room->amenities as $amenity) @php $image = $amenity->getMetaData('icon_image', true) @endphp
@if ($image) {{ $amenity->name }} @elseif($amenity->icon) @endif {{ $amenity->name }}
@endforeach
@endif @if ($rules = theme_option('hotel_rules'))

{{ __('Hotel Rules') }}

{!! BaseHelper::clean($rules) !!}
@endif @if ($cancellation = theme_option('cancellation'))

{{ __('Cancellation') }}

{!! BaseHelper::clean($cancellation) !!}
@endif @if(HotelHelper::isReviewEnabled()) @include(Theme::getThemeNamespace('views.hotel.partials.reviews'), ['model' => $room]) @endif