Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function handle() |
||
16 | { |
||
17 | $pendingCampaignSendCount = CampaignSend::whereNull('sent_at')->count(); |
||
18 | |||
19 | $this->comment("Dispatching jobs for {$pendingCampaignSendCount} pending CampaignSends"); |
||
20 | |||
21 | CampaignSend::whereNull('sent_at')->each(function (CampaignSend $campaignSend) { |
||
22 | dispatch(new SendMailJob($campaignSend)); |
||
23 | }); |
||
24 | |||
25 | $this->comment('All done!'); |
||
26 | } |
||
27 | } |
||
28 |