2024-02-27 11:32:09 -05:00
|
|
|
@section("blueprint.wrappers")
|
2024-02-17 15:32:08 -05:00
|
|
|
<!--
|
|
|
|
Blueprint extensions containing dashboard wrappers
|
|
|
|
will have their wrapper code injected here.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!-- wrapper:insert -->
|
2024-03-25 12:49:44 -04:00
|
|
|
@foreach (File::allFiles(__DIR__ . '/wrappers') as $partial)
|
|
|
|
@if ($partial->getExtension() == 'php')
|
|
|
|
@include(str_replace(base_path() . '/', '', $partial->getPathname()))
|
|
|
|
@endif
|
|
|
|
@endforeach
|
2024-02-17 15:32:08 -05:00
|
|
|
@endsection
|