Currently i am using PHP 5.6.32 and Laravel Framework Lumen (5.4.6) (Laravel Components 5.4.*).
I am able to schedule my task as per the specific time like below
$schedule->call('App\Http\Controllers\SubjectController@frickcall', ["request" => $request])
->cron("14:23");
But after scheduling above call how could i remove it from scheduler list?