1
0

layout.blade.php 247 B

1234567891011121314151617
  1. @extends('layouts.anon')
  2. @section('content')
  3. @include('site.news.partial.nav')
  4. @yield('body');
  5. @endsection
  6. @push('styles')
  7. <style type="text/css">
  8. html, body {
  9. background: #fff;
  10. }
  11. .navbar-laravel {
  12. box-shadow: none;
  13. }
  14. </style>
  15. @endpush