2 years ago
#37488
Johnny Nguyen
Task Scheduling Laravel on Cpanel not running
i try to create a post every 1 minute. But it is not running. please check for me i wrong my code. thank you
PostCommand.php
protected $signature = 'post:create';
protected $description = 'Create new post';
public function handle()
{
DB::table('xs5p')->insert([
'matrathuong' => 'Nguyen Thi ha',
'ghichu' => 'Day la noi dung bai viet',
'g0' => 1
]);
}
}
Kernel.php
protected $commands = [
'App\Console\Commands\PostCommand'
];
protected function schedule(Schedule $schedule)
{
$schedule->command('post:create')->everyMinute();
}
laravel
task
scheduling
0 Answers
Your Answer