how many users can a cron handle in laravel in single run code example
Example 1: Laravel Scheduler
$schedule->call(function () {
DB::table('users')->whereYear('last_login_at','<',date('Y')-1)->delete();
})->daily();
Example 2: how many users can a cron handle in laravel in single run
get cutomer id on handle function