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
well, you could perform a database query for each bd and than use the mysql or you sgbd database create command, for eg;
DB::getConnection()->statement('CREATE DATABASE :schema', array('schema' => "dasdsdasdsadsadsa"))
It probably will work with what you want.