Hello,
I had launched my web app in production, but I wanted to migrate my database (in order to create the tables), but when I do "php artisan list", here's what I get :
$ php5 artisan list
Laravel Framework version 4.1.24
Usage:
[options] command [arguments]
Options:
--help -h Display this help message.
--quiet -q Do not output any message.
--verbose -v|vv|vvv Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version -V Display this application version.
--ansi Force ANSI output.
--no-ansi Disable ANSI output.
--no-interaction -n Do not ask any interactive question.
--env The environment the command should run under.
Available commands:
help Displays help for a command
list Lists commands
workbench Create a new package workbench
generate
generate:controller Generate a controller
generate:migration Generate a new migration
generate:model Generate a model
generate:pivot Generate a pivot table
generate:publish-templates Copy generator templates for user modification
generate:resource Generate a new resource
generate:scaffold Scaffold a new resource (with boilerplate)
generate:seed Generate a database table seeder
generate:view Generate a view
I only have the packages from way/generators. I imported the vendors using "php composer install", and on my local machine, I have all of the commands.
How can I get back the standard Laravel commands ?
Do you still have : 'Illuminate\Foundation\Providers\ArtisanServiceProvider' in app/config/app.php (providers array)?
AnasT said:
Do you still have : 'Illuminate\Foundation\Providers\ArtisanServiceProvider' in app/config/app.php (providers array)?
Yes I have
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community