12 lines
220 B
PHP
12 lines
220 B
PHP
<html lang="{{ app()->getLocale() }}">
|
|
@include('partials.print.head')
|
|
|
|
<body onload="window.print();">
|
|
@stack('body_start')
|
|
|
|
@yield('content')
|
|
|
|
@stack('body_end')
|
|
</body>
|
|
</html>
|