Workboard
@if($this->categories->isEmpty())

No workboard categories have been set up yet.

@can('workboard.manage') Create a category @endcan
@else
@foreach($this->categories as $category)
{{ $category->name }}
{{ $category->available_items_count }}
@if($category->description)

{{ $category->description }}

@else
@endif {{ $category->available_items_count > 0 ? 'View ' . $category->available_items_count . ' available' : 'View queue' }}
@endforeach
@endif