Everything you can configure from inside the admin panel as the superadmin: branding, theme, email, payments, subscription plans, legal pages, and analytics. This phase is universal — it works for any CodeCanyon app because it’s driven by a check-first pattern (inspect what the panel exposes, configure what’s there, defer the rest), not a fixed menu.
Phase 6 — map the panel, then configure in-panel
MUST work first (security, money, email, legal); SHOULD/LATER polish after. Out-of-panel work (external accounts, performance) is Phase 8; hardening is Phase 7.
The first two pages are read-only homework; pages 3–6 are the MUST core (security → email → money → legal); pages 7–8 close out with the SHOULD/LATER polish (theme + system pages, then analytics and the growth features).
1 · Concepts & admin modelThe in-app superadmin vs the three-tier ops model, the inspect-then-configure pattern, and the Playwright + Livewire traps to know before touching a form.
2 · Survey & brand profileThe capabilities survey (what's editable vs hardcoded vs tier-gated), the vendor-docs digest with the APP_ENV scan, and the one-page brand profile every later task reads.
3 · Credentials & brandingRotate the default admin login, generate and upload the brand asset kit, resolve the server PHP binary, then audit and replace the vendor's demo content.
4 · Email (SMTP)Wire transactional email and learn the Froiden-family trap where a CustomConfigProvider loads SMTP from the DB regardless of APP_ENV — so the panel's warning banner lies.
5 · Payments & plansChoose a Stripe account strategy, discover the app's REAL webhook URL and events, wire keys with the three-actor model, then create plans only after market research.
6 · Legal & consentPublish real Privacy Policy and Terms content (both MUST) and enable the cookie/GDPR consent banner — with a clean hand-off to Phase 7 when the vendor ships no consent UI.
7 · Theme & system pagesApply brand colours (or defer to code), brand the 404/500/503 error pages, and prepare a maintenance-mode page with a bypass token.
8 · Engagement & SEOWire GA4 (usually the 3-file deviation), then surface chat, social login, blog, and sitemap — configure or defer.