adrema/app/Form/Actions/PreventionRememberAction.php

39 lines
1.0 KiB
PHP
Raw Normal View History

2024-07-02 22:55:37 +02:00
<?php
namespace App\Form\Actions;
use App\Form\Models\Participant;
use App\Prevention\Mails\PreventionRememberMail;
use Illuminate\Support\Facades\Mail;
use Lorisleiva\Actions\Concerns\AsAction;
class PreventionRememberAction
{
use AsAction;
public string $commandSignature = 'prevention:remember';
public function handle(): void
{
$query = Participant::whereHas('form', fn ($form) => $form->where('needs_prevention', true))
->where(
fn ($q) => $q
->where('last_remembered_at', '<=', now()->subWeeks(2))
->orWhereNull('last_remembered_at')
);
foreach ($query->get() as $participant) {
if (count($participant->preventions()) === 0) {
return;
}
if ($participant->getFields()->getMailRecipient() === null) {
continue;
}
2024-07-02 22:55:37 +02:00
Mail::send(new PreventionRememberMail($participant));
$participant->update(['last_remembered_at' => now()]);
}
}
}