diff --git a/resources/views/layouts/print.blade.php b/resources/views/layouts/print.blade.php index 3f5601fd4..b5e820a8f 100644 --- a/resources/views/layouts/print.blade.php +++ b/resources/views/layouts/print.blade.php @@ -1,11 +1,13 @@ @include('partials.print.head') - + @stack('body_start') @yield('content') @stack('body_end') + + @include('partials.print.scripts') diff --git a/resources/views/partials/print/scripts.blade.php b/resources/views/partials/print/scripts.blade.php new file mode 100644 index 000000000..f75fbcf31 --- /dev/null +++ b/resources/views/partials/print/scripts.blade.php @@ -0,0 +1,32 @@ + + + + + + + + @stack('scripts_start') + + @stack('charts') + + + + + + @stack('body_css') + + @stack('body_stylesheet') + + @stack('body_js') + + @stack('body_scripts') + + @livewireScripts + + + +@stack('scripts_end')