@extends('layouts.admin') @section('page-title') Rooms - {{ $establishment->name }} @endsection @section('page-top-title') Rooms - {{ $establishment->name }} @endsection @section('content-body') {{-- --}}
@include('backend.inc.messages')

Rooms - {{ $establishment->name }}

{{-- Add New Room Type Modal --}} Add New Room
@if ($establishment->EstablishmentRooms) @foreach ($establishment->EstablishmentRooms as $item) @endforeach @endif
Image Room Category Bed Type Room Count Extra bed allowed Room View Smoking Room Active Actions
@php $featuredGrdImgSrc = asset( '/storage/backend-resources/images/trans/1.jpg', ); if ($item->featured_image) { $featuredGrdImgSrc = asset( '/storage/Establishments/' . $establishment->name . '/Rooms/' . $item->featured_image, ); } @endphp {{-- {{ strtoupper($item->name) }} --}} View More Images {{ $item->room_type }} {{ $item->bed_type }} {{ $item->room_count }} rooms {{ $item->is_extra_bed_allowed == 1 ? 'YES' : 'No' }} {{ $item->view_type }} {{ $item->is_smoking_room == 1 ? 'YES' : 'No' }} @if ($item->is_active) Room Active @else Room Inactive @endif   View Details
@endsection @section('page-scripts') @endsection