Skip to content

Commit

Permalink
refs #15 Removed white space (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna authored Oct 15, 2020
1 parent 7beb7a3 commit 30a90f2
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions views/breadcrumbs.blade.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
@foreach ($generate() as $crumbs)
@if ($crumbs->url() && !$loop->last)
<li class="{{$class}}">
<a href="{{ $crumbs->url() }}">
{{ $crumbs->title() }}
</a>
<a href="{{ $crumbs->url() }}">{{ $crumbs->title() }}</a>
</li>
@else
<li class="{{$class}} {{$active}}">
{{ $crumbs->title() }}
</li>
<li class="{{$class}} {{$active}}">{{ $crumbs->title() }}</li>
@endif
@endforeach

0 comments on commit 30a90f2

Please sign in to comment.