10 lines
375 B
PHP
10 lines
375 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>
|
|
<h3 style="font-size: 1.2em;">{!! $category['description'] !!}</h3>
|