2019-09-18 16:50:01 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console;
|
|
|
|
|
2019-09-25 16:08:50 +02:00
|
|
|
use App\Jobs\SendReminderEmail;
|
|
|
|
use App\Jobs\SendWelcomeEmail;
|
|
|
|
use App\User;
|
2019-09-18 16:50:01 +02:00
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
2019-09-25 16:08:50 +02:00
|
|
|
use Illuminate\Support\Carbon;
|
2019-09-18 16:50:01 +02:00
|
|
|
|
|
|
|
class Kernel extends ConsoleKernel
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The Artisan commands provided by your application.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $commands = [
|
|
|
|
//
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the application's command schedule.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function schedule(Schedule $schedule)
|
|
|
|
{
|
2019-09-25 16:08:50 +02:00
|
|
|
$schedule->call(function() {
|
|
|
|
$users = User::where('email_verified_at', '!=', null)
|
|
|
|
->where('notification_hour', '!=', null)
|
|
|
|
->get();
|
|
|
|
var_dump(count($users));
|
|
|
|
foreach ($users as $user) {
|
|
|
|
dispatch((new SendReminderEmail($user)));
|
|
|
|
}
|
|
|
|
})->everyMinute();
|
2019-09-18 16:50:01 +02:00
|
|
|
// $schedule->command('inspire')
|
|
|
|
// ->hourly();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register the commands for the application.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function commands()
|
|
|
|
{
|
|
|
|
$this->load(__DIR__.'/Commands');
|
|
|
|
|
|
|
|
require base_path('routes/console.php');
|
|
|
|
}
|
|
|
|
}
|