Hello, I'm working on my first SaaS using Laravel and added Cashier with Paddle. I'm probably overthinking this but I would like to know the best way of adding features to each plan associated with Paddle subscriptions. I'm not asking for a "solve my issue" answer. I'm asking for advice and a suggestion for a course here in Laracast that can help me to understand this better.
@deryckoe I’d personally use Laravel’s own first-party feature flag package, Pennant, for this. You can then define and check features based on what plan your customers are subscribed to (if any):
Thanks @martinbean for some reason I never got the notification about your answer and just continue trying. I ended up doing it with vanilla code, with no package. I'll take a look at Pennant. Thanks so much!