@extends('layouts/contentNavbarLayout') @section('title', 'Beds') @section('vendor-style') @endsection @section('content')

Beds

Add Bed
@if (session('success')) @endif
@forelse($beds as $bed) @empty @endforelse
# 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
@csrf @method('DELETE')
No beds yet. Add a bed (create floors and rooms first if needed).
@endsection @section('vendor-script') @endsection @section('page-script') @endsection