onQueue('analytics'); $this->onConnection('redis'); } /** * Execute the job. */ public function handle(): void { \App\Models\AnalyticsEvent::create([ 'event_type' => $this->eventType, 'mailbox_hash' => $this->mailboxHash, 'domain_hash' => $this->domainHash, 'user_type' => $this->userType, 'user_id' => $this->userId, 'ip_address' => $this->ipAddress ?? request()->ip(), 'user_agent' => $this->userAgent ?? request()->userAgent(), 'metadata' => $this->metadata, ]); } }