2022-06-01 10:15:55 +03:00

21 lines
549 B
PHP

<!DOCTYPE html>
<html dir="{{ language()->direction() }}" lang="{{ app()->getLocale() }}">
<x-layouts.print.head>
<x-slot name="title">
{!! !empty($title->attributes->has('title')) ? $title->attributes->get('title') : $title !!}
</x-slot>
</x-layouts.print.head>
<body onload="window.print();">
@stack('body_start')
<x-layouts.print.content>
{!! $content !!}
</x-layouts.print.content>
@stack('body_end')
<x-layouts.print.scripts />
</body>
</html>