master.blade.php 270 B

123456789101112
  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. @include('application.layouts.bottom')
  9. @include('application.layouts.modal')
  10. </body>
  11. </html>