*/ public function getBranding(Organisation $organisation): array { return [ 'organisation_name' => $organisation->name, 'logo_url' => $organisation->email_logo_url ?? config('crewli.default_logo_url'), 'primary_color' => $organisation->email_primary_color ?? '#6366f1', 'reply_to' => $organisation->email_reply_to, 'sender_name' => $organisation->email_sender_name ?? $organisation->name, 'footer_text' => $organisation->email_footer_text, ]; } }