feat views
: Start work on improved wrapper importing that doesn't use bash.
This commit is contained in:
parent
751ad1fe36
commit
a57fa7c3e3
4 changed files with 10 additions and 0 deletions
|
@ -71,4 +71,9 @@
|
|||
-->
|
||||
|
||||
<!-- wrapper:insert -->
|
||||
@foreach (File::allFiles(__DIR__ . '/wrappers') as $partial)
|
||||
@if ($partial->getExtension() == 'php')
|
||||
@include(str_replace(base_path() . '/', '', $partial->getPathname()))
|
||||
@endif
|
||||
@endforeach
|
||||
@endsection
|
0
resources/views/blueprint/admin/wrappers/.gitkeep
Normal file
0
resources/views/blueprint/admin/wrappers/.gitkeep
Normal file
|
@ -5,4 +5,9 @@
|
|||
-->
|
||||
|
||||
<!-- wrapper:insert -->
|
||||
@foreach (File::allFiles(__DIR__ . '/wrappers') as $partial)
|
||||
@if ($partial->getExtension() == 'php')
|
||||
@include(str_replace(base_path() . '/', '', $partial->getPathname()))
|
||||
@endif
|
||||
@endforeach
|
||||
@endsection
|
0
resources/views/blueprint/dashboard/wrappers/.gitkeep
Normal file
0
resources/views/blueprint/dashboard/wrappers/.gitkeep
Normal file
Loading…
Reference in a new issue