parfum/resources/views/flux/navlist/index.blade.php
2025-09-13 10:36:12 +07:00

15 lines
233 B
PHP

@props([
'variant' => null,
])
@php
$classes = Flux::classes()
->add('flex flex-col')
->add('overflow-visible min-h-auto')
;
@endphp
<nav {{ $attributes->class($classes) }} data-flux-navlist>
{{ $slot }}
</nav>