brandedSubject('Welcome')` instead of * `$this->subject('Welcome')`. The prefix can be overridden globally via * `MAIL_SUBJECT_PREFIX` (see `config/mail.php` -> `brand.subject_prefix`) * or disabled per call by passing `prefix: false`. */ trait HasBrandedSubject { protected function brandedSubject(string $subject, bool $prefix = true): static { $prefixValue = $prefix ? (string) config('mail.brand.subject_prefix', '') : ''; return $this->subject($prefixValue.$subject); } }