Files
ladill-queue/resources/views/components/empty-state.blade.php
T
isaaccladandCursor 051372672b
Deploy Ladill Queue / deploy (push) Successful in 38s
Polish Queue Devices empty state and align sidebar with other apps.
Match Care/Frontdesk nav icon styling, admin icons, and settings footer; add proper table layouts and empty states for Devices and Displays.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-29 21:22:44 +00:00

17 lines
610 B
PHP

@props(['title', 'description' => null])
<div {{ $attributes->merge(['class' => 'flex flex-col items-center justify-center px-6 py-14 text-center']) }}>
@if (isset($icon))
<div class="mb-4 flex h-12 w-12 items-center justify-center rounded-2xl bg-slate-100 text-slate-400">
{{ $icon }}
</div>
@endif
<h3 class="text-sm font-semibold text-slate-900">{{ $title }}</h3>
@if ($description)
<p class="mt-1 max-w-sm text-sm text-slate-500">{{ $description }}</p>
@endif
@if (isset($action))
<div class="mt-5">{{ $action }}</div>
@endif
</div>