master.blade.php 1006 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. @include('supervisor.layouts.top')
  4. <body>
  5. @include('supervisor.layouts.header')
  6. <section class="bg-half-170 d-table w-100 it-home" style="background-color: #efefef; height:100vh;">
  7. <div class="container-fluid">
  8. <div class="row">
  9. @include('supervisor.layouts.left_menu')
  10. <div class="col-md-10 col-12 mt-5" style="padding:1rem; padding-top: 2.5rem!important;">
  11. {{-- <div class="tab-content" id="pills-tabContent"> --}}
  12. @yield('content')
  13. @include('supervisor.layouts.footer')
  14. {{-- </div><!--end tab content--> --}}
  15. </div><!--end col-->
  16. </div><!--end row-->
  17. </div><!--end container-->
  18. </section><!--end section-->
  19. @include('supervisor.layouts.bottom')
  20. @include('supervisor.layouts.modal')
  21. </body>
  22. </html>