Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

theUnforgiven's avatar

White Label a System

Hi all,

I've built a simple system, that I want to white label and wondered how I could get this to work so it can take payments to the owners white label stripe account and be able to update the system once which effectively update all the white label systems? Would this be a case for a Lumen API?

Suggestions/Thoughts greatly appreciated.

0 likes
11 replies
theUnforgiven's avatar

Anyone have any suggestions would building an API be the best option?

mstnorris's avatar

I'm just on my way out, I'll be around on Sunday if someone else hasn't chimed in until then.

BrianDillingham's avatar

Why not sub domain routing and client CNAME their domains?

Laravel routes also handle wildcard sub-domains, and will pass your wildcard parameters from the domain:

Route::group(['domain' => '{account}.myapp.com'], function()
{
    // account specific route group        
});

Like Wordpress.com does for blogs: example.com mapped to: example.wordpress.com

Here is a Laracasts lesson - Wildcard Subdomains

mstnorris's avatar

@lstables sorry for not getting back to you sooner. Missus's birthday.

What else has the client specified?

theUnforgiven's avatar

@mstnorris haha no worries....Hope it was a good un :)

Just wanting to white label the system, so i'm thinking build an API that would communicate with the system already built then carbon copy it as a central place where all the white labellers would use it and be able to use on there own domain(s) and servers etc.

Basically to sell it on but the client would still be able to push new features to it and gain a monthly income stream from it.

I hope this makes sense :)

mstnorris's avatar

Yes, that makes a lot more sense but I am sorry that I can't give you any real input on this one. It isn't something I am too familiar with so it wouldn't be appropriate for me to comment.

I'd love to be kept up to date though with your progress and the decisions you make as it'd be cool to learn something new.

theUnforgiven's avatar

Yeah I'll update you think I'll go down the road of building an Api that way I get to play with lumen t the same time lol.

1 like
silentdrummer's avatar

Any news on that? I want to build a white label solution myself and I'm looking for best practices for the architecture.

theUnforgiven's avatar

No the project never materialised, sorry! if anyone else has thoughts on this then do share.

Please or to participate in this conversation.