@extends('../layout/form-layout') @section('form-name', 'Rooms') @section('form-area')
@csrf
@php if (isset($room)) { $img_value = $room->room_id; } @endphp
Room Name : {{ isset($room) ? $room->room_name : '' }}
Room Category : {{ isset($room) ? $room->RoomCatgoryWithConcat->room_categories_name : '' }}
Room Type : {{ isset($room) ? $room->RoomTypeWithConcat->room_type_Select : '' }}
Area : {{ isset($room) ? $room->room_area : '' }} Sqrt
Max residence : {{ isset($room) ? $room->room_max_recident : '' }} packs
Default residence : {{ isset($room) ? $room->room_default_recident : '' }} packs
Max adults : {{ isset($room) ? $room->room_max_adults : '' }} packs
Max children : {{ isset($room) ? $room->room_max_children : '' }} packs
Max Additional Beds : {{ isset($room) ? $room->room_beds : '' }}
Floor : {{ isset($room) ? $room->room_floor : '' }}
Description : {{ isset($room) ? $room->room_descrption : '' }}
Additional Facilities : @foreach ($Additional_facilities as $Additional_facilities) / @endforeach
@endsection @section('script-area') @if (!isset($room)) @endif @endsection