[WIP] Setup of skeleton

This commit is contained in:
Ludovic CANDELLIER
2020-03-25 00:08:27 +01:00
parent baf8e13c25
commit 36267139a1
377 changed files with 18248 additions and 26 deletions

View File

@@ -0,0 +1,24 @@
<h1>
{{ $title }}
@if(isset($subtitle))
<small>{{ $subtitle }}</small>
@endif
</h1>
<ol class="breadcrumb">
<li>
<a href="{{ route('boilerplate.dashboard') }}">
<i class="fa fa-home"></i> {{ __('boilerplate::layout.home') }}
</a>
</li>
@if(isset($breadcrumb))
@foreach($breadcrumb as $label => $route)
@if(is_numeric($label))
<li class="active">{{ $route }}</li>
@elseif(is_array($route))
<li><a href="{{ route($route[0], $route[1]) }}">{{ $label }}</a></li>
@else
<li><a href="{{ route($route) }}">{{ $label }}</a></li>
@endif
@endforeach
@endif
</ol>