Minor Updates

This commit is contained in:
David Bomba 2025-08-23 15:21:50 +10:00
parent 1f239e5ea1
commit 38f2de7524
2 changed files with 1 additions and 2 deletions

View File

@ -49,7 +49,7 @@ class SendVerificationNotification implements ShouldQueue
public function handle($event) public function handle($event)
{ {
MultiDB::setDB($event->company->db); MultiDB::setDB($event->company->db);
$event->user->service()->invite($event->company, $event->is_react); $event->user->service()->invite($event->company, $event->is_react);
if (Carbon::parse($event->company->created_at)->lt(now()->subDay())) { if (Carbon::parse($event->company->created_at)->lt(now()->subDay())) {

View File

@ -42,7 +42,6 @@ class PDF extends FPDI
$this->Cell($this->GetPageWidth(), 5, $trans, 0, 0, 'R'); $this->Cell($this->GetPageWidth(), 5, $trans, 0, 0, 'R');
} else { } else {
$this->SetX(0); $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'); $this->Cell($this->GetPageWidth(), 5, $trans, 0, 0, 'C');
} }
} }