@extends('front_end.layouts.home') @php $showRightSidebar = false; @endphp @section('title', 'HTML5 Games') @section('left_sidebar') @include('front_end.pages.games.games_left_sidebar') @endsection @section('content')

HTML5 Games

Play hundreds of free games directly in your browser

Game Categories

@foreach($categories as $category) @endforeach
@if($featuredGames->count() > 0)

Featured Games

View All
@foreach($featuredGames as $game)
@include('front_end.pages.games.partials.game_card', ['game' => $game])
@endforeach
@endif

Most Popular

View All
@foreach($popularGames as $game)
@include('front_end.pages.games.partials.game_card', ['game' => $game])
@endforeach

Newest Games

View All
@foreach($newestGames as $game)
@include('front_end.pages.games.partials.game_card', ['game' => $game])
@endforeach
@if($topRatedGames->count() > 0)

Top Rated

View All
@foreach($topRatedGames as $game)
@include('front_end.pages.games.partials.game_card', ['game' => $game])
@endforeach
@endif
@push('scripts') @endpush @endsection