我需要在laravel scheduler函数中访问我的UserController方法,
protected function schedule(Schedule $schedule)
{
$schedule->command('foo')
->hourly();
}
有可能吗?
答案 0 :(得分:2)
试试他的:
$schedule->call('Full\Namespace\YourController@method')
->hourly();