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

{{ $game->title }}

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

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

{{ __('This may take a few moments') }}
@endif
{{ __('Use your mouse and keyboard to play. Press F11 for fullscreen mode.') }}
@endsection @push('scripts') @if($game->isSwfGame()) @endif @endpush