@if (count($breadcrumbs))
    
        @foreach ($breadcrumbs as $breadcrumb)
            @if ($loop->last)
                - 
                    {{ $breadcrumb->title }}
                @elseif ($breadcrumb->url)
- 
                    {{ $breadcrumb->title }}
                    /
                @else
                {{-- Using .active to give it the right colour (grey by default) --}}
- 
                    {{ $breadcrumb->title }}
                    /
                @endif
        @endforeach
@endif