header.blade.php
498 Bytes
<div class="row wrapper border-bottom white-bg page-heading">
<div class="col-lg-10" style="height:10px"></div>
<div class="col-lg-10">
<h2>{{ $title }}</h2>
<ol class="breadcrumb">
@for ($i = 0; $i < count($paths); $i++)
@if ($i != count($paths) - 1)
<li><a href="{{ $paths[$i]["href"] }}">{{ $paths[$i]["title"] }}</a></li>
@else
<li class="active"><a>{{ $paths[$i]["title"] }}</a></li>
@endif
@endfor
</ol>
</div>
</div>