Release Date: Late 2024
This version comes with support for:
- Laravel 10
- PHP 8.2+
- Node.js
Also includes plugin support for:
- Sports Betting
- Crypto Competitions
- Stock Competitions
Note: Plugins and games are available for subscribers in Discord downloads. Subscribe: On our Discord you will find updated files with games.
- 1100 games available (as of late 2024), including 100 from Pragmatic Play
- GeoIP2 support (manually enabled)
To use this Laravel-based casino app, you’ll need to download compatible game packs. Follow the setup instructions provided below.
Official Discord: Join Here
Demo Site: Visit Demo
Disclaimer: The demo is constantly updated, tested, and reset. It should not be used as a stable environment.
Here’s a guide for setting up the project on a typical cPanel server. It can be adapted for other environments.
- Server Setup Requirements:
- Apache, MySQL
- PHP 8+ (Composer required)
- Laravel 10
- Node.js 16 & PM2
- Enable SSL: Force SSL for your domain.
- Create Database: Set up a MySQL database for the app.
- Clone the Repository: Pull the latest code from GitHub.
- Install Dependencies:
composer install npm install
- Environment Configuration:
- Copy
.env.example
to.env
and update with your environment variables.
php artisan key:generate
- Copy
- Migrate Database:
php artisan migrate
Tip: Check out the full PM2 Commands Guide for managing Node.js processes.
Inside the PTWEBSOCKET
folder, use the following commands:
pm2 start Arcade.js --watch
pm2 start Server.js --watch
pm2 start Slots.js --watch
To start all services at once:
pm2 start Arcade.js --watch && pm2 start Server.js --watch && pm2 start Slots.js --watch
If you run into issues, try clearing caches:
php artisan cache:clear
php artisan config:clear
php artisan route:clear
- 404 Errors: Ensure your
.htaccess
file is properly set up.