Blame view

resources/views/layouts/print.blade.php 409 Bytes
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <html lang="{{ setting('general.default_locale') }}">
      @include('partials.admin.head')
  
      @push('css')
      <!-- Bootstrap 3 print fix -->
      <link rel="stylesheet" href="{{ asset('public/css/bootstrap3-print-fix.css?v=1.2') }}">
      @endpush
  
      <body onload="window.print();" class="print-width">
          @stack('body_start')
  
          @yield('content')
  
          @stack('body_end')
      </body>
  </html>