akaunting/resources/views/layouts/print.blade.php
2019-12-13 11:04:17 +03:00

22 lines
349 B
PHP

<html lang="{{ app()->getLocale() }}">
@include('partials.admin.head')
<style type="text/css">
* {
font-family: DejaVu Sans, sans-serif !important;
}
</style>
<body onload="window.print();">
@stack('body_start')
@yield('content')
@stack('body_end')
</body>
</html>