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

17 lines
409 B
PHP
Raw Normal View History

<html lang="{{ setting('general.default_locale') }}">
2018-04-07 12:00:39 +03:00
@include('partials.admin.head')
2018-04-14 10:36:26 +03:00
@push('css')
<!-- Bootstrap 3 print fix -->
<link rel="stylesheet" href="{{ asset('public/css/bootstrap3-print-fix.css?v=1.2') }}">
@endpush
2018-04-07 12:00:39 +03:00
<body onload="window.print();" class="print-width">
2018-08-04 18:05:37 +03:00
@stack('body_start')
2018-04-07 12:00:39 +03:00
@yield('content')
2018-08-04 18:05:37 +03:00
@stack('body_end')
2018-04-07 12:00:39 +03:00
</body>
</html>