Last active
June 9, 2021 15:57
-
-
Save brkphp/5ae458ca92a79fbcd125e630b0c2290c to your computer and use it in GitHub Desktop.
Laravel 5 simple breadcumbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@php | |
$link = url('/'); | |
@endphp | |
@for($i = 1; $i <= count(\Illuminate\Support\Facades\Request::segments()); $i++) | |
<li class="breadcrumb-item"> | |
@if($i < count(\Illuminate\Support\Facades\Request::segments()) & $i > 0) <?php $link .= "/" . \Illuminate\Support\Facades\Request::segment($i); ?> | |
<a href="<?= $link ?>">{{\Illuminate\Support\Facades\Request::segment($i)}}</a> {!!'<i class="fa fa-angle-right"></i>'!!} @else {{\Illuminate\Support\Facades\Request::segment($i)}} @endif | |
</li> | |
@endfor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment