@extends('layouts/contentNavbarLayout') @section('title', 'Beds') @section('vendor-style') @endsection @section('content')
| # | Bed | Room | Floor | Rent (₹) | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $bed->id }} | {{ $bed->name }} | {{ $bed->room->name }} | {{ $bed->room->floor->name }} | ₹ {{ number_format($bed->rent_amount ?? 0, 2) }} | @if($bed->status === \App\Models\Bed::STATUS_AVAILABLE) Available @else Occupied @endif | View Edit |
| No beds yet. Add a bed (create floors and rooms first if needed). | ||||||