Package Data | |
---|---|
Maintainer Username: | giwrgos88 |
Maintainer Contact: | g3o.panayi@gmail.com (George Panayi) |
Package Create Date: | 2017-01-23 |
Package Last Update: | 2017-11-28 |
Language: | CSS |
License: | MIT |
Last Refreshed: | 2024-11-22 03:01:41 |
Package Statistics | |
---|---|
Total Downloads: | 33 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 1 |
Total Forks: | 1 |
Total Open Issues: | 0 |
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
This package is very easy to set up. There are only couple of steps.
Pull this package in through Composer.
composer require giwrgos88/core-game-platform
Run this command inside your terminal.
composer update
Add the package to your application service providers in config/app.php
file.
'providers' => [
/**
* Third Party Service Providers...
*/
Giwrgos88\Game\Core\Providers\CoreServiceProvider::class,
],
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
The package contains a middleware which force the request to be secured.
$router->get('/', [
'as' => 'home',
'middleware' => 'force_ssl',
'uses' => 'HomeController@index',
]);
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