{{ $title }}

  1. Home
  2. @foreach ($breadcrumbs as $label => $url) @php // If the key is numeric, it means only label is given and it's the current page $isLast = $loop->last; $breadcrumbLabel = is_int($label) ? $url : $label; $breadcrumbUrl = is_int($label) ? null : $url; @endphp @if ($isLast || !$breadcrumbUrl)
  3. {{ $breadcrumbLabel }}
  4. @else
  5. {{ $breadcrumbLabel }}
  6. @endif @endforeach