I am trying to execute some custom artisan command from controller like
Artisan::call('php artisan MyCustomCommand');
but it works fine when I execute
php artisan MuCustomCommand from CLI
.
I have registered command in app/start/artisan.php.
Even Artisan::call('php artisan --help');
is not working.
app/Console/Kernel.php
file. – Stillborn