Files
ladill-mini/resources/views/partials/topbar-widgets-mid.blade.php
T
isaaccladandCursor 84471c3081
Deploy Ladill Mini / deploy (push) Successful in 24s
Standardize desktop topbar widgets to match CRM layout.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-23 18:15:34 +00:00

11 lines
562 B
PHP

{{-- Desktop cart pill (between launcher and avatar divider). --}}
@if (! empty($cartRoute))
<a href="{{ $cartRoute }}"
class="hidden items-center gap-2 rounded-full border border-slate-200 px-3 py-1.5 text-sm font-medium text-slate-700 transition hover:bg-slate-50 lg:inline-flex">
<span>Cart</span>
@if (($cartCount ?? 0) > 0)
<span class="inline-flex min-w-5 items-center justify-center rounded-full bg-slate-900 px-1.5 py-0.5 text-[11px] font-semibold text-white">{{ $cartCount }}</span>
@endif
</a>
@endif