untuk membuat kode terjadwal dengan laravel berikut yang harus kita pahami
App\Console\Kernel
protected function schedule(Schedule $schedule)
{
$schedule->call(‘App\Http\Controllers\Kirimwa@KirimAmbilWa’)->everyMinute();
}
kemudian dibuat penggilan scedule di cron per menit
1 * * * * php /var/www/html/notifikasi/artisan schedule:run >> /dev/null 2>&1
referensi :

