9 lines
307 B
PHP
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>
|