The sweet spot between "Pennant is too basic" and "LaunchDarkly is overkill". Local evaluation, powerful targeting, beautiful dashboard.
Free tier includes 1,000 MAU. No credit card required.
use FeatureFlags\Facades\Feature;
public function show()
{
if (Feature::enabled('new-checkout')) {
return view('checkout.new');
}
return view('checkout.legacy');
}
Everything you need to ship features safely
Flags are cached locally and evaluated in your app. No network requests per flag check.
Target by any attribute: plan, email domain, country, signup date. Multiple conditions per rule.
Gradually release to 1%, 10%, 50%... Sticky bucketing ensures consistent user experience.
Not just booleans. Return strings, numbers, or JSON for A/B tests and configuration.
Webhooks push changes to your app instantly. No waiting for cache to expire.
Track every change. Know who toggled what, when. Essential for debugging and compliance.
Based on Monthly Active Users, not seats. No surprises.
All plans include: Targeting rules, percentage rollouts, webhooks, and our Laravel package.
Compare to LaunchDarkly: 10k MAU + 3 servers = ~£100/mo. We're 3-5x cheaper.
Join Laravel developers who deploy with confidence using feature flags.