From 16ccc87fbe3f791414df7e73e7c2e498138e521e Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 1 Oct 2024 10:45:03 +0200 Subject: [PATCH] chore: Add "Not Usable" indicator for storage items --- resources/views/livewire/storage/index.blade.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/resources/views/livewire/storage/index.blade.php b/resources/views/livewire/storage/index.blade.php index 3ab495569..605653504 100644 --- a/resources/views/livewire/storage/index.blade.php +++ b/resources/views/livewire/storage/index.blade.php @@ -17,7 +17,11 @@ {{ $storage->name }}
- {{ $storage->description }}
+ {{ $storage->description }} + + @if (!$storage->is_usable) +
Not Usable
+ @endif @empty