pianello-api/resources/views/components/base/breadcrumb/index.blade.php

14 lines
335 B
PHP
Raw Normal View History

@props(['light' => null])
<nav
aria-label="breadcrumb"
{{ $attributes->class(merge(['flex']))->merge($attributes->whereDoesntStartWith('class')->getAttributes()) }}
>
<ol @class([
'flex items-center text-primary dark:text-slate-300',
'text-white/90' => $light,
])>
{{ $slot }}
</ol>
</nav>