@extends('front.layouts.app') @push('user.css') @endpush @section('content') @if (isset($hotel) && $hotel != null) @if (count($hotel->hotelImages) > 0) @endif @endif @if (isset($hotel) && $hotel != null)

{{ $hotel->title }}

{{ $hotel->country->title . ', ' . $hotel->city->title }}

{{ $hotel->address }}

@if ($hotel->description)
{{--
نبذة عن الفندق:
--}}

{!! $hotel->description !!}

@endif
@php($min_price = $hotel->rooms->min('price')) @if ($min_price != null && $min_price > 0)

{{ $min_price }} {{ __('messages.currency') }} / لكل ليلة

@endif
{!! $hotel->location !!}
@endif @endsection @section('script') @stop