@extends('front_end.layouts.home') @section('title', 'Play ' . $game->title) @section('content')

{{ $game->title }}

({{ $game->ratings->count() }} ratings) {{ $game->category->name }} {{ number_format($game->plays_count) }} plays @if($game->is_multiplayer) Multiplayer @endif {{ $game->min_age }}+

{{ $game->description }}

@if($game->instructions)
How to Play
{!! nl2br(e($game->instructions)) !!}
@endif

You Might Also Like

@foreach($relatedGames as $relatedGame)
{{ $relatedGame->title }}

{{ number_format($relatedGame->plays_count) }} plays

@endforeach
@push('scripts') @endpush @endsection