@extends('frontend.layouts.master') @section('title') Home @endsection @section('content') @php $banner_bg = ""; if($banner != null){ $banner_bg = 'style="background-image:url('.asset($banner->value).')"'; } @endphp

{{$title}}

@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
game_img

{{ $game->title }}

Play Game
@php if($loop->iteration % 3 == 0){ $delay = 400; } else{ $delay += 200; } @endphp @endforeach @else

No Games Found!

@endif
@endsection @section('script') @endsection