@extends('layouts/contentNavbarLayout') @section('title', 'Bed: ' . $bed->name) @section('content')

Bed: {{ $bed->name }}

Edit
@csrf @method('DELETE')
Back to list
Bed name
{{ $bed->name }}
Room
{{ $bed->room->name }}
Floor
{{ $bed->room->floor->name }}
Rent Amount
₹ {{ number_format($bed->rent_amount ?? 0, 2) }}
Status
@if($bed->status === \App\Models\Bed::STATUS_AVAILABLE) Available @else Occupied @endif
@endsection