Advertisement
Guest User

php

a guest
Feb 16th, 2019
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @foreach($posts as $post)
  2.             <div class="image @php if($counter++ != 0) echo 'image_hidden'; @endphp">
  3.                 @foreach($huge_images as $image)
  4.                     @if($post->hash == $image->hash)
  5.                         post-hash {{$post->hash}}
  6.                         <img class="desktop_image" src="images/w_1.jpg">
  7.                         <img class="mobile_image" src="images/m_1.png">
  8.                     @endif
  9.                 @endforeach
  10.             </div>
  11.         @endforeach
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement