This package is for the Puerto Galera Billiard Competition. It handles diffent seasons (called cycles in the package), Teams, playersm, venues and, of course, statistics!
You can install the package via composer:
composer require dimimo/pool
An Artisan command can install all elements of the package:
php artisan pool:install
php artisan migrate
Or you can publish and run the migrations with:
php artisan vendor:publish --tag="pool-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="pool-config"
This is the contents of the published config file:
return [
'prefix' => 'pool',
'middleware' => ['web'],
];
Optionally, you can publish the views using
php artisan vendor:publish --tag="pool-views"
A full stack package that handles all Pool related routes.
composer test
Please see CHANGELOG for more information on what has changed recently.
The MIT License (MIT). Please see License File for more information.