LaravelPackages.net
Acme Inc.
Toggle sidebar
giwrgos88/core-game-platform

Package for adding backoffice functionalities for web app on Laravel Framework.

33
1
v1.0.3
About giwrgos88/core-game-platform

giwrgos88/core-game-platform is a Laravel package for package for adding backoffice functionalities for web app on laravel framework.. It currently has 1 GitHub stars and 33 downloads on Packagist (latest version v1.0.3). Install it with composer require giwrgos88/core-game-platform. Discover more Laravel packages by giwrgos88 or browse all Laravel packages to compare alternatives.

Last updated

Core Game Platform

Using this package you can have a simple backoffice for your web game app or your facebook game application. The package is using the Laravel Siderbar by Maatwebsite which gives you the ability to add your own package on the side bar of the back office.

The package offers: -Back-office -Installation Process -Facebook Integration -Google Analytics Integration

Installation

This package is very easy to set up. There are only couple of steps.

Composer

Pull this package in through Composer.

composer require giwrgos88/core-game-platform

Run this command inside your terminal.

composer update

Service Provider

Add the package to your application service providers in config/app.php file.

'providers' => [
    
    /**
     * Third Party Service Providers...
     */
    Giwrgos88\Game\Core\Providers\CoreServiceProvider::class,
],

Publish assets files

Run the command to publish the assets of the package

php artisan vendor:publish --provider="Giwrgos88\Game\Core\Providers\AssetsServiceProvider" --tag=config
php artisan vendor:publish --provider="Giwrgos88\Game\Core\Providers\AssetsServiceProvider" --tag=migrations
php artisan vendor:publish --provider="Giwrgos88\Game\Core\Providers\AssetsServiceProvider" --tag=seeds
php artisan vendor:publish --provider="Giwrgos88\Game\Core\Providers\AssetsServiceProvider" --tag=assets

Middlewares

The package contains a middleware which force the request to be secured.

$router->get('/', [
    'as' => 'home',
    'middleware' => 'force_ssl',
    'uses' => 'HomeController@index',
]);

Configuration

You can easily configure the settings of the package from core_game.php file.

The package is using the coreui designed and built by Lukasz Holeczed

Comments