@if (isset($popularNews) AND $popularNews->count() > 0)

Berita Populer

@foreach ($popularNews as $news)
0{{ $loop->iteration }}
{{ $news->title }}
  • {{ $news->dateFormatted($news->published_at) }}
@endforeach
@endif @if (isset($youtubes) AND $youtubes->count() > 0)

Video

@endif @if (isset($photos) AND $photos->count() > 0)

Galeri Foto

@php $imgClass = null; @endphp @foreach ($photos as $photo) @if ($loop->first)
@elseif ($loop->index % 3 === 0)
@endif @if ($loop->iteration === 1) @php $imgClass = 'rounded-top-start'; @endphp @elseif ($loop->iteration === 3) @php $imgClass = 'rounded-bottom-start'; @endphp @elseif ($loop->iteration === 7) @php $imgClass = 'rounded-top-end'; @endphp @elseif ($loop->iteration === 9) @php $imgClass = 'rounded-bottom-end'; @endphp @else @php $imgClass = null; @endphp @endif @endforeach
@endif