breadcrumbs
This commit is contained in:
parent
d65f7ced34
commit
de9cb50084
38 changed files with 290 additions and 94 deletions
|
@ -0,0 +1,14 @@
|
|||
@if ($breadcrumbs)
|
||||
<div class="breadcrumb">
|
||||
<i class="fa fa-home"></i>
|
||||
<a href="{{route('settings.dashboard')}}" rel="Dashboard">Dashboard</a>
|
||||
|
||||
@for($i = 1; $i < count($breadcrumbs); $i++)
|
||||
<?php
|
||||
$breadcrumb = $breadcrumbs[$i];
|
||||
?>
|
||||
<i class="fa fa-angle-right"></i>
|
||||
<a href="{{ $breadcrumb->url }}" rel="Dashboard">{{ $breadcrumb->title }}</a>
|
||||
@endfor
|
||||
</div>
|
||||
@endif
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue