@extends('layouts.app') @section('title', 'Room Types') @section('page-title', 'Room Types') @section('content')
@forelse($roomTypes as $type) @empty @endforelse
NameDescriptionBase Price/NightRoomsStatusActions
{{ $type->name }} {{ Str::limit($type->description, 60) ?: '—' }} ₦{{ number_format($type->base_price, 0) }} {{ $type->rooms_count }} room{{ $type->rooms_count !== 1 ? 's' : '' }} @if($type->is_active) Active @else Inactive @endif
@csrf

No room types yet

Add your first room type to start adding rooms.

@if($errors->any()) @endif @endsection