diff --git a/app/Console/Commands/SendReminders.php b/app/Console/Commands/SendReminders.php index a2bfdc29da8b..a7e6cc4d019a 100644 --- a/app/Console/Commands/SendReminders.php +++ b/app/Console/Commands/SendReminders.php @@ -45,7 +45,7 @@ class SendReminders extends Command foreach ($invoices as $invoice) { if ($reminder = $invoice->getReminder()) { - $this->info('Send to' . $invoice->id); + $this->info('Send to ' . $invoice->id); $this->mailer->sendInvoice($invoice, $reminder); } }