@extends('layouts.admin') @section('page-title') Rooms - {{ $establishment->name }} @endsection @section('page-top-title') Rooms - {{ $establishment->name }} @endsection @section('content-body') {{-- --}}
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
|
{{ $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 |