diff --git a/app/Listeners/SendVerificationNotification.php b/app/Listeners/SendVerificationNotification.php index 27e26d5c17..b9e6642a15 100644 --- a/app/Listeners/SendVerificationNotification.php +++ b/app/Listeners/SendVerificationNotification.php @@ -49,7 +49,7 @@ class SendVerificationNotification implements ShouldQueue public function handle($event) { MultiDB::setDB($event->company->db); - + $event->user->service()->invite($event->company, $event->is_react); if (Carbon::parse($event->company->created_at)->lt(now()->subDay())) { diff --git a/app/Utils/Traits/Pdf/PDF.php b/app/Utils/Traits/Pdf/PDF.php index 05470e9c11..997276284c 100644 --- a/app/Utils/Traits/Pdf/PDF.php +++ b/app/Utils/Traits/Pdf/PDF.php @@ -42,7 +42,6 @@ class PDF extends FPDI $this->Cell($this->GetPageWidth(), 5, $trans, 0, 0, 'R'); } else { $this->SetX(0); - // $this->SetX(config('ninja.pdf_page_numbering_y_alignment')); // 10mm from left edge $this->Cell($this->GetPageWidth(), 5, $trans, 0, 0, 'C'); } }