page_adv.blade.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <div class="container advNoPrint" style="margin-top:30px; margin-bottom:0px;margin-left:-7px;">
  2. @for($count=1; $count<=4; $count++)
  3. @php
  4. $array_count = sizeof($advs[$position . " 234x60 " . $count]);
  5. @endphp
  6. @if($array_count > 0)
  7. <div class="advertisement col-sm-3 mobile_adv {{$array_count > 1 ? 'carousel slide' : ''}}" {{$array_count > 1 ? 'data-ride="carousel"' : ''}} style="padding-left:0px; padding-right:0px; margin-left:5px; margin-right:5px;width:24%;margin-top:20px;">
  8. <div class="desktop-advert carousel-inner">
  9. @foreach($advs[$position . " 234x60 " . $count] as $idx => $adv)
  10. <div class="item {{$idx == 0 ? 'active' : ''}}">
  11. @if($adv->google_code != '')
  12. <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  13. <ins class="adsbygoogle"
  14. style="display:block"
  15. data-ad-client="ca-pub-0209495346002620"
  16. data-ad-format="auto"
  17. data-full-width-responsive="true"
  18. data-ad-slot="{{$adv->google_code}}"></ins>
  19. <script>
  20. (adsbygoogle = window.adsbygoogle || []).push({});
  21. </script>
  22. @else
  23. @if($adv->image != '')
  24. @if($adv->url != '')
  25. <a href="{{$adv->url}}" target="_blank"><img src="/files/adv/{{$adv->image}}" alt="" style="border:1px solid gray;"></a>
  26. @else
  27. @if($adv->jingle != '')
  28. <audio controls autoplay>
  29. <source src="{{$adv->jingle}}" type="audio/mpeg">
  30. </audio>
  31. @else
  32. <img src="/files/adv/{{$adv->image}}" alt="" style="border:1px solid gray;">
  33. @endif
  34. @endif
  35. @else
  36. <div class="widget" style="margin-top:30px;width:234px;height:60px;border:1px solid gray;">
  37. @endif
  38. @endif
  39. </div>
  40. @endforeach
  41. </div>
  42. <div class="tablet-advert carousel-inner">
  43. @foreach($advs[$position . " 234x60 " . $count] as $idx => $adv)
  44. <div class="item {{$idx == 0 ? 'active' : ''}}">
  45. @if($adv->google_code != '')
  46. <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  47. <ins class="adsbygoogle"
  48. style="display:block"
  49. data-ad-client="ca-pub-0209495346002620"
  50. data-ad-format="auto"
  51. data-full-width-responsive="true"
  52. data-ad-slot="{{$adv->google_code}}"></ins>
  53. <script>
  54. (adsbygoogle = window.adsbygoogle || []).push({});
  55. </script>
  56. @else
  57. @if($adv->image != '')
  58. @if($adv->url != '')
  59. <a href="{{$adv->url}}" target="_blank"><img src="/files/adv/{{$adv->image}}" alt="" style="border:1px solid gray;"></a>
  60. @else
  61. @if($adv->jingle != '')
  62. <audio controls autoplay>
  63. <source src="{{$adv->jingle}}" type="audio/mpeg">
  64. </audio>
  65. @else
  66. <img src="/files/adv/{{$adv->image}}" alt="" style="border:1px solid gray;">
  67. @endif
  68. @endif
  69. @else
  70. <div class="widget" style="margin-top:30px;width:234px;height:60px;border:1px solid gray;">
  71. @endif
  72. @endif
  73. </div>
  74. @endforeach
  75. </div>
  76. <div class="mobile-advert carousel-inner">
  77. @foreach($advs[$position . " 234x60 " . $count] as $idx => $adv)
  78. <div class="item {{$idx == 0 ? 'active' : ''}}">
  79. @if($adv->google_code != '')
  80. <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  81. <ins class="adsbygoogle"
  82. style="display:block"
  83. data-ad-client="ca-pub-0209495346002620"
  84. data-ad-format="auto"
  85. data-full-width-responsive="true"
  86. data-ad-slot="{{$adv->google_code}}"></ins>
  87. <script>
  88. (adsbygoogle = window.adsbygoogle || []).push({});
  89. </script>
  90. @else
  91. @if($adv->image != '')
  92. @if($adv->url != '')
  93. <a href="{{$adv->url}}" target="_blank"><img src="/files/adv/{{$adv->image}}" alt="" style="border:1px solid gray;display:block;margin:auto;"></a>
  94. @else
  95. @if($adv->jingle != '')
  96. <audio controls autoplay>
  97. <source src="{{$adv->jingle}}" type="audio/mpeg">
  98. </audio>
  99. @else
  100. <img src="/files/adv/{{$adv->image}}" alt="" style="border:1px solid gray;display:block;margin:auto;">
  101. @endif
  102. @endif
  103. @else
  104. <div class="widget" style="margin-top:30px;width:234px;height:60px;border:1px solid gray;display:block;margin:auto;">
  105. @endif
  106. @endif
  107. </div>
  108. @endforeach
  109. </div>
  110. </div>
  111. @else
  112. <div class="col-sm-3"></div>
  113. @endif
  114. @endfor
  115. </div>