master.blade.php 269 B

1234567891011
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. @include('application.layouts.top')
  4. <body>
  5. @include('application.layouts.header')
  6. @yield('content')
  7. @include('application.layouts.footer')
  8. </body>
  9. @include('application.layouts.bottom')
  10. @include('application.layouts.modal')
  11. </html>