{{ $title }}
-
Home
@foreach ($breadcrumbs as $label => $url)
@php
$isLast = $loop->last;
$breadcrumbLabel = is_int($label) ? $url : $label;
$breadcrumbUrl = is_int($label) ? null : $url;
@endphp
@if ($isLast || !$breadcrumbUrl)
- {{ $breadcrumbLabel }}
@else
- {{ $breadcrumbLabel }}
@endif
@endforeach