@forelse($beds as $bed) @empty @endforelse
Bed Identification Parent Room Current Status Restrictions
{{ substr($bed->bed_number, -1) }}

{{ $bed->bed_number }}

ID: {{ str_pad($bed->id, 5, '0', STR_PAD_LEFT) }}

{{ $bed->room->room_number }}

{{ $bed->room->roomType->name }}

@if($bed->status === 'occupied') {{ strtoupper($bed->status) }} @elseif($bed->status === 'available') {{ strtoupper($bed->status) }} @else {{ strtoupper($bed->status) }} @endif @if($bed->is_blocked_for_infection) ISO @endif
@if($bed->gender_restriction !== 'any') {{ $bed->gender_restriction }} ONLY @else NO GENDER LIMIT @endif
@csrf @method('DELETE')

No Beds Found

Try adjusting your filters or add a new bed

@if($beds->hasPages())
{{ $beds->links() }}
@endif