@extends('layouts.app') @section('title') {{ $roomType->getTranslation('name') }} - LuvaOtel & Spa @endsection @section('content')
{{ $roomType->getTranslation('name') }}
Detail 1
Detail 2

{{ $roomType->getTranslation('name') }}

€{{ $roomType->base_price }} / @if(App::getLocale() === 'tr') Gece @else Night @endif

{{ $roomType->getTranslation('description') }}

@if(App::getLocale() === 'tr') Kapasite @else Capacity @endif

{{ $roomType->max_adults }} @if(App::getLocale() === 'tr') Yetişkin @else Adults @endif {{ $roomType->max_children }} @if(App::getLocale() === 'tr') Çocuk @else Children @endif

@if(App::getLocale() === 'tr') Öne Çıkan Olanaklar @else Featured Amenities @endif

@foreach($roomType->getTranslation('amenities') ?? [] as $amenity)
{{ $amenity }}
@endforeach

@if(App::getLocale() === 'tr') Diğer Konaklama Seçenekleri @else Other Accommodation Options @endif

@foreach($otherRooms as $room)

{{ $room->getTranslation('name') }}

{{ $room->getTranslation('description') }}

€{{ $room->base_price }} / @if(App::getLocale() === 'tr') Gece @else Night @endif @if(App::getLocale() === 'tr') İNCELE @else VIEW @endif
@endforeach
@endsection