@extends('layouts.app') @section('title', $game->title . ' - Game World') @push('styles') @endpush @section('content')

{{ $game->title }}

{{ $game->category->name }} @if($game->is_featured) {{ __('Featured') }} @endif
{{ $game->plays_count }} {{ __('plays') }}
@if(!$game->swf_file_path && ($game->iframe_code || $game->iframe_url))
{!! $game->getGameContent() !!}
@else
{{ __('Loading...') }}

{{ __('Loading game...') }}

{{ __('This may take a few moments') }}
@endif
@if($game->description)
{{ __('About This Game') }}

{{ $game->description }}

@endif
@endsection @push('scripts') @if($game->swf_file_path) @endif @endpush