Files
opensem/resources/views/Shop/Shelves/partials/breadcrumb.blade.php
2022-12-22 01:17:01 +01:00

9 lines
307 B
PHP

<h1 style="font-size: 1.5em;">
@foreach($breadcrumb ?? [] as $parent)
<a href="{{ route('Shop.Categories.show', ['id' => $parent['id']]) }}" style="text-decoration: none; color: inherit;">{{ $parent['name'] }}</a> /
@endforeach
<span style="font-size: 1.4em;">
{{ $category['name'] }}
</span>
</h1>