Implementing backend for dhtmlxGantt using Laravel framework.
- PHP 8.2 or higher
- Composer
- MySQL 5.7+
- Install dependencies:
composer install - Copy
.env.exampleto.env(if not exists) - Create database and update connection settings in
.env:DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=your_database_name DB_USERNAME=your_username DB_PASSWORD=your_password - Generate application key:
php artisan key:generate - Create and populate tables:
php artisan migrate --seed
- Start development server:
php artisan serve - Open browser at
http://127.0.0.1:8000