/
home
/
techb158
/
immovalet.com
/
vendor
/
botble
/
theme
/
resources
/
views
/
partials
/
/home/techb158/immovalet.com/vendor/botble/theme/resources/views/partials
mkdir
upload
Name
Size
Mode
Actions
breadcrumb.blade.php
959
0644
edit
dl
rm
footer.blade.php
219
0644
edit
dl
rm
header.blade.php
354
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/vendor/botble/theme/resources/views/partials/breadcrumb.blade.php
(959B)
<ul class="breadcrumb" itemscope itemtype="http://schema.org/BreadcrumbList"> @foreach ($crumbs = Theme::breadcrumb()->getCrumbs() as $i => $crumb) @if ($i != (count($crumbs) - 1)) <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> <a href="{{ $crumb['url'] }}" itemprop="item" title="{{ $crumb['label'] }}"> {{ $crumb['label'] }} <meta itemprop="name" content="{{ $crumb['label'] }}" /> </a> <meta itemprop="position" content="{{ $i + 1}}" /> </li> @else <li class="active" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> {!! $crumb['label'] !!} <meta itemprop="name" content="{{ $crumb['label'] }}" /> <meta itemprop="position" content="{{ $i + 1}}" /> </li> @endif @endforeach </ul>
Save
@foreach ($crumbs = Theme::breadcrumb()->getCrumbs() as $i => $crumb) @if ($i != (count($crumbs) - 1))
{{ $crumb['label'] }}
@else
{!! $crumb['label'] !!}
@endif @endforeach