From 9ab0e9075149b45de65f5ea8b3efc1f03ab26fb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Thu, 29 Jul 2021 18:43:59 +0300 Subject: [PATCH] Report print fixed chart issue. --- resources/views/layouts/print.blade.php | 4 ++- .../views/partials/print/scripts.blade.php | 32 +++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 resources/views/partials/print/scripts.blade.php 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')