@php /** @var array $breadcrumbs */ $breadcrumbs = $breadcrumbs ?? []; $backUrl = $backUrl ?? null; $backLabel = $backLabel ?? 'Indietro'; @endphp
@foreach($breadcrumbs as $i => $crumb) @php $isLast = $i === (count($breadcrumbs) - 1); $label = $crumb['label'] ?? ''; $url = $crumb['url'] ?? null; @endphp @if($i > 0) / @endif @if(!$isLast && $url) {{ $label }} @else {{ $label }} @endif @endforeach
@if($backUrl) {{ $backLabel }} @endif