@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