@extends('layouts.app') @section('title', 'Room Types') @section('page-title', 'Room Types') @section('content')
Define room categories for your hotel. Each type has its own pricing.
| Name | Description | Base Price/Night | Rooms | Status | Actions |
|---|---|---|---|---|---|
| {{ $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 |
|
No room types yetAdd your first room type to start adding rooms. | |||||