@extends('layouts.admin') @section('content')
{{ trans('global.show') }} {{ trans('cruds.hotel.title') }}
{{ trans('cruds.hotel.fields.id') }} {{ $hotel->id }}
{{ trans('cruds.hotel.fields.name') }} {{ $hotel->name }}
{{ trans('cruds.hotel.fields.photo') }} @if($hotel->photo) @endif
{{ trans('cruds.hotel.fields.address') }} {{ $hotel->address }}
{{ trans('cruds.hotel.fields.description') }} {!! $hotel->description !!}
{{ trans('cruds.hotel.fields.rating') }} {{ $hotel->rating }}
{{ trans('global.back_to_list') }}
@endsection