vendredi 11 septembre 2020

Cron with argument not running via URL in laravel

i have setup dynamic url for cron execution via URL in my project.But cron with argument not running via URL,Here is my code

Routes

Route::get('/artisan/{command}/{param}', 'CommandController@index');

Controller

public function index($command, $param)
    {
        echo $command;die;
        $artisan = Artisan::call($command.":".$param);
        $output = Artisan::output();
        return $output;
    }

And my cron signature is

protected $signature = 'cron:getdata {date}';

while i am running i am getting below error

Not enough arguments (missing: "date").


from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/3io3oBI
via IFTTT

Aucun commentaire:

Enregistrer un commentaire