Files
opensem/resources/views/Shop/Shelves/partials/breadcrumb.blade.php
2025-12-13 21:43:40 +01:00

7 lines
279 B
PHP

<h1 class="breadcrumb-title">
@foreach($breadcrumb ?? [] as $parent)
<a href="{{ route('Shop.Categories.show', ['id' => $parent['id']]) }}" class="breadcrumb-link">{{ $parent['name'] }}</a> /
@endforeach
<span class="breadcrumb-current">{{ $category['name'] }}</span>
</h1>