is there any way to create new database with Laravel CodeBehind ? I mean, I\'m not able to use php artisan or something like that. Just because I want
Laravel
php artisan
You can run artisan commands from code.
Artisan::call('migrate');
To run composer commands (you'll need it to register migrations), use php shell_exec:
shell_exec('composer dumpauto');