peliprint/resources/views/blueprint/dashboard/dashboard.blade.php

13 lines
393 B
PHP
Raw Normal View History

@section("blueprint.wrappers")
<!--
Blueprint extensions containing dashboard wrappers
will have their wrapper code injected here.
-->
<!-- wrapper:insert -->
@foreach (File::allFiles(__DIR__ . '/wrappers') as $partial)
@if ($partial->getExtension() == 'php')
@include(str_replace(base_path() . '/', '', $partial->getPathname()))
@endif
@endforeach
@endsection