php - Laravel Artisan CLI doesn't execute commands -
the problem i'm facing laravel's (v4.2) artisan cli when try execute command (for instance php artisan list
) command doesn't work , instead contents of illuminate\foundation\application object in command window.
you're question vauge. if you're asking how add custom commands laravel's artisan, missing last step.
if have created command via:
php artisan command:make customcommand --command=custom:command
then last step need register command:
artisan::add(new customcommand);
Comments
Post a Comment