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

16 lines
224 B
PHP
Raw Normal View History

<html lang="{{ app()->getLocale() }}">
2019-11-16 10:21:14 +03:00
2018-04-07 12:00:39 +03:00
@include('partials.admin.head')
2019-11-16 10:21:14 +03:00
<body onload="window.print();">
2018-04-14 10:36:26 +03:00
2018-08-04 18:05:37 +03:00
@stack('body_start')
2019-11-16 10:21:14 +03:00
@yield('content')
2018-08-04 18:05:37 +03:00
@stack('body_end')
2019-11-16 10:21:14 +03:00
2018-04-07 12:00:39 +03:00
</body>
2019-11-16 10:21:14 +03:00
2018-04-07 12:00:39 +03:00
</html>