@extends('admin.layouts.app') @section('title', 'Rooms & Suites') @section('page_title', 'Rooms & Suites') @section('content')

Rooms & Suites

Manage room types, pricing, capacity and gallery images.

+ Add Room Type
@if(session('error'))
{{ session('error') }}
@endif

Room Type List

Total {{ $roomTypes->total() }} room types
@forelse($roomTypes as $roomType) @empty @endforelse
SL Room Type Pricing Capacity Gallery Featured Status Order Actions
{{ $roomTypes->firstItem() + $loop->index }}
@if($roomType->featured_image) {{ $roomType->name }} @else ROOM @endif
{{ $roomType->name }}
@if($roomType->small_title)
{{ $roomType->small_title }}
@endif
{{ $roomType->slug }}
@if($roomType->has_discount)
৳{{ number_format((float) $roomType->discount_price, 2) }}
৳{{ number_format((float) $roomType->base_price, 2) }}
@else
৳{{ number_format((float) $roomType->base_price, 2) }}
@endif
Per night
{{ $roomType->maximum_guests }} Guests
{{ $roomType->maximum_adults }} Adults, {{ $roomType->maximum_children }} Children
{{ $roomType->total_rooms }} room(s)
{{ $roomType->images_count }}
@csrf @method('PATCH')
@csrf @method('PATCH')
{{ $roomType->sort_order }}
Edit
@csrf @method('DELETE')
R

No room type found

Add your first room type to start the Rooms & Suites section.

+ Add Room Type
@if($roomTypes->hasPages()) @endif
@endsection @push('styles') @endpush @push('scripts') @endpush