
changes changes1 page-changes lock color changes-2 footer page toggle-remove display-dropdown changes card-changes card changes-button chnages-article pages page-404-fix breadcrumbs-fix remove drop-down Apply fixes from StyleCI buttons fixes existing-fix changes-3 Apply fixes from StyleCI changes-4
14 lines
498 B
PHP
14 lines
498 B
PHP
@if (isset($breadcrumbs))
|
|
|
|
<ol class="breadcrumb float-sm-right ">
|
|
<li class="breadcrumb-item"> <i class="fas fa-home"> </i> {!! Lang::get('lang.you_are_here') !!} : </li>
|
|
@foreach($breadcrumbs as $breadcrumb)
|
|
@if (!$breadcrumb->last)
|
|
<li class="breadcrumb-item"><a href="{{ $breadcrumb->url }}">{{ $breadcrumb->title }}</a></li>
|
|
@else
|
|
<li class="breadcrumb-item active">{{ str_replace(" ", "", $breadcrumb->title) }}</li>
|
|
@endif
|
|
@endforeach
|
|
|
|
</ol>
|
|
@endif |