@php $breadcrumbEnabled = Theme::breadcrumb()->enabled(); if ($breadcrumbEnabled) { $breadcrumbEnabled = match (Theme::get('breadcrumbEnabled')) { '1' => true, '0' => false, default => Theme::breadcrumb()->enabled(), }; } @endphp @if($breadcrumbEnabled)

{{ SeoHelper::getTitleOnly() }}

    @foreach (Theme::breadcrumb()->getCrumbs() as $crumb) @if($loop->last)
  1. @if(! $loop->first) @endif

    {{ $crumb['label'] }}

  2. @else
  3. {{ $crumb['label'] }}

  4. @endif @endforeach
@if($backgroundImage = theme_option('breadcrumb_background_image')) {{ RvMedia::image($backgroundImage, Theme::getSiteTitle(), attributes: ['class' => 'position-absolute bottom-0 start-0 end-0 top-0 z-0']) }} @endif
@endif