Files
opensem/resources/views/Shop/Shelves/partials/breadcrumb.blade.php
Ludovic CANDELLIER 5151f393be fix layout
2022-12-21 18:33:15 +01:00

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>