akaunting/resources/views/layouts/print.blade.php
2021-07-29 18:43:59 +03:00

14 lines
247 B
PHP

<html lang="{{ app()->getLocale() }}">
@include('partials.print.head')
<body>
@stack('body_start')
@yield('content')
@stack('body_end')
@include('partials.print.scripts')
</body>
</html>