Branding configuration
The Branding settings screen at /admin/branding lets you white-label your Marketix instance — replacing the default name and logo with your own. Changes take effect immediately across the UI, email templates, and (where applicable) PDF reports.
How it works
Section titled “How it works”Branding settings are persisted via Spatie Laravel Settings under the branding group. Uploaded image files are stored on the active storage disk (configured in Storage configuration) under the branding/ path and served publicly.
Fields
Section titled “Fields”Application name
Section titled “Application name”| UI label | Setting key | Description |
|---|---|---|
| Application name | app_name | The name shown throughout the UI and in email subjects. Leave blank to use the default (Marketix). |
Image assets
Section titled “Image assets”Each image field accepts an upload and shows the currently stored file as a preview thumbnail when one exists. A Remove current checkbox lets you delete the stored image without uploading a replacement (reverting to the default behaviour).
| UI label | Setting key | Where it appears |
|---|---|---|
| Logo (light mode) | logo_light_path | Navigation bar and other UI surfaces on light backgrounds. |
| Logo (dark mode) | logo_dark_path | Navigation bar and other UI surfaces on dark backgrounds. |
| Email / PDF logo | logo_email_path | Transactional emails and PDF report headers. |
| Favicon | favicon_path | Browser tab icon. Accepted formats: .ico, .png, .jpg, .jpeg. |
Uploading and removing images
Section titled “Uploading and removing images”- Click the file picker for the relevant field and select an image. The upload is submitted when you click Save.
- To remove an image without replacing it, tick Remove current next to the relevant field and click Save. The file is deleted from storage and the setting is cleared.
- Uploading a new image when one already exists automatically deletes the previous file from storage.
Storage dependency
Section titled “Storage dependency”Uploaded branding assets are stored using the active storage backend. If you switch the storage driver (see Storage configuration), existing branding files remain on the previous disk. Re-upload any assets after changing the storage backend.