pianello-api/resources/views/components/base/breadcrumb/index.blade.php
Ale Gallo 96c0bfb8ce Committing laravel (part 5)
committing blade templating files and components that might come in handy
2023-11-10 16:41:20 +01:00

13 lines
335 B
PHP

@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>