I have used symfony2 console to create database. If I want to create a database named \"symfony\" I usually mentioned that name in parameters.yml file and run the below comm
As far as I know, you can use php artisan migrate
to make migrations including creating tables from Laravel Console. However, you need to create and modify migration files first, where you can create or drop tables.
So if you want to create a table directly from Laravel Console using something like php artisan create database table ***
, it is not possible.