Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. @foreach($aboutcontent as $about)
  2. <div class="col-md-4 text-center">
  3. <div class="thumbnail">
  4. <img id="" class="img-responsive" src="images/{{ $about->aboutimg }}" alt="">
  5. <div class="caption">
  6. <h3>{{ $about->aboutname }}</h3>
  7. <p>{{ $about->aboutinfo }}</p>
  8. </div>
  9. </div>
  10. </div>
  11. @endforeach
  12.  
  13. @foreach($aboutcontent as $key => $about)
  14. @if($key > 0){
  15. <div class="col-md-4 text-center">
  16. <div class="thumbnail">
  17. <img id="" class="img-responsive" src="images/{{ $about->aboutimg }}" alt="">
  18. <div class="caption">
  19. <h3>{{ $about->aboutname }}</h3>
  20. <p>{{ $about->aboutinfo }}</p>
  21. </div>
  22. </div>
  23. </div>
  24. @endif;
  25. @endforeach
  26.  
  27. <?php $count = 0;?>
  28. @foreach
  29. @if($count>1)
  30. <div class="col-md-4 text-center">
  31. <div class="thumbnail">
  32. <img id="" class="img-responsive" src="images/{{ $about->aboutimg }}" alt="">
  33. <div class="caption">
  34. <h3>{{ $about->aboutname }}</h3>
  35. <p>{{ $about->aboutinfo }}</p>
  36. </div>
  37. </div>
  38. </div>
  39. @endif
  40. $count++
  41. @endforeach
  42.  
  43. @foreach(array_slice($aboutcontent, 1) as $about)
  44. <div class="col-md-4 text-center">
  45. <div class="thumbnail">
  46. <img id="" class="img-responsive" src="images/{{ $about->aboutimg }}" alt="">
  47. <div class="caption">
  48. <h3>{{ $about->aboutname }}</h3>
  49. <p>{{ $about->aboutinfo }}</p>
  50. </div>
  51. </div>
  52. </div>
  53. @endforeach
  54.  
  55. // Notice you start at 1 and your first
  56. // elem is 0 so... ta da... skipped
  57. @for ($i = 1; $i < count($aboutcontents); $i++){
  58. $about = $aboutcontents[$i]; //This is the object
  59.  
  60. //now use $about as you would
  61. }
  62.  
  63. @foreach ($rows as $row)
  64. @if ($loop->first) @continue @endif
  65. {{ $row->name }}<br/>
  66. @endforeach
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement