@extends('user.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('user.partials.rtl-style') @section('content')
{{ __('Add Room') }}
{{ __('Back') }}
@csrf

{{ '*' . __('Upload 770X600 pixel size image for best quality.') }}

@csrf
{{-- featured image start --}}
...

{{ 'Leave blank if you want to make it unlimited.' }}

{{ 'Will be used to show in google map.' }}

{{ 'Will be used to show in google map.' }}

@foreach ($languages as $language)
@if ($roomSetting->room_category_status == 1)
@php $categories = App\Models\User\HotelBooking\RoomCategory::where([['language_id', $language->id], ['user_id', Auth::guard('web')->user()->id]]) ->where('status', 1) ->get(); @endphp
@endif
@php $amenities = App\Models\User\HotelBooking\RoomAmenity::where('language_id', $language->id) ->orderBy('serial_number', 'asc') ->get(); @endphp
@foreach ($amenities as $amenity)
@endforeach
@php $currLang = $language; @endphp @foreach ($languages as $language) @continue($currLang->id == $language->id)
@endforeach
@endforeach
@endsection @section('scripts') @endsection