formIntegration = $formIntegrationsEvent->integration; $this->form = $this->formIntegration->form; } /** * Build the message. * * @return $this */ public function build() { $integration = FormIntegration::getIntegration($this->formIntegration->integration_id); return $this ->markdown('mail.form.integrations-event-created', [ 'form' => $this->form, 'integration_name' => $integration['name'] ?? '', 'error' => json_encode($this->formIntegrationsEvent->data) ])->subject("Integration issue with your form: '" . $this->form->title . "'"); } }