akaunting/resources/views/layouts/print.blade.php

14 lines
247 B
PHP
Raw Normal View History

<html lang="{{ app()->getLocale() }}">
2020-01-07 16:36:09 +03:00
@include('partials.print.head')
2019-12-13 11:04:17 +03:00
2021-07-29 18:43:59 +03:00
<body>
2018-08-04 18:05:37 +03:00
@stack('body_start')
2020-01-17 16:26:08 +03:00
@yield('content')
2018-08-04 18:05:37 +03:00
@stack('body_end')
2021-07-29 18:43:59 +03:00
@include('partials.print.scripts')
2018-04-07 12:00:39 +03:00
</body>
</html>