index.blade.php 611 B

12345678910111213141516171819202122232425262728293031323334
  1. @extends('layouts.home')
  2. @section('content')
  3. @foreach($sections as $section)
  4. {{$section->loadLayout()}}
  5. @include('partials.' . $section->layout, ['data' => $section, 'advs' => $section->getAdvs(), 'videos' => $videos])
  6. @endforeach
  7. @stop
  8. @section('extra_js')
  9. <script>
  10. $(function () {
  11. $(document).ready(function(){
  12. if(window.matchMedia("(max-width: 767px)").matches){
  13. $(".desktop-advert").remove();
  14. $(".tablet-advert").remove();
  15. } else{
  16. }
  17. });
  18. $('.carousel').carousel()
  19. });
  20. </script>
  21. @stop