licenses = $params; $this->threshold = $threshold; } /** * Get the message envelope. */ public function envelope(): Envelope { $from = new Address(config('mail.from.address'), config('mail.from.name')); return new Envelope( from: $from, subject: trans('mail.Expiring_Licenses_Report'), ); } /** * Get the message content definition. */ public function content(): Content { return new Content( markdown: 'notifications.markdown.report-expiring-licenses', with: [ 'licenses' => $this->licenses, 'threshold' => $this->threshold, ] ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }