@if($games != null && $games->count() > 0)
@php
$delay = 400;
@endphp
@foreach($games as $game)
@php
$flip = 'fade-up';
$link = $game->game_url ?? $game->link;
if(!auth()->check()){
$link = route('login');
}
@endphp
@php
if($loop->iteration % 3 == 0){
$delay = 400;
}
else{
$delay += 200;
}
@endphp
@endforeach
@else
No Games Found!
@endif