13 lines
No EOL
393 B
PHP
13 lines
No EOL
393 B
PHP
@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 |