@extends('layouts.admin') @section('title', 'Room Management') @section('content')
Manage and approve room listings
| Name | Description | Price | Status | Category | Actions |
|---|---|---|---|---|---|
|
{{ $room->name }}@if($room->room_number) (Room #{{ $room->room_number }})@endif
|
${{ number_format($room->price, 2) }}
|
@if($room->status === 'approved') Approved @elseif($room->status === 'pending') Pending @else Rejected @endif | @if($room->room_category) {{ ucfirst($room->room_category) }} @else - @endif |
@if(auth()->user()->canApprove() && $room->status === 'pending')
@endif
|
|
| No rooms found. Create one now | |||||