Everything on Stripe.
9 articles tagged Stripe — sorted newest first.
Handling Stripe Disputes and Chargebacks in Laravel
Chargebacks happen to every SaaS eventually. Here's how to listen for Stripe dispute webhooks, auto-collect evidence, and submit it programmatically before the response window closes.
Stripe Connect Express Onboarding in Laravel
Build marketplace-style payments in Laravel using Stripe Connect Express — onboard sellers via Stripe's hosted flow, then route funds and take your platform fee.
Stripe Pricing Tables with Laravel — Embed Checkout Without Custom UI
Stripe's Pricing Table handles your plan cards, billing period toggle, and promo codes — no custom UI needed. Here's how to embed it in Laravel and wire up customer tracking.
Handling Stripe Subscription Lifecycle Events in Laravel: Beyond Webhook Verification
Signature verification is step one. Here's what to do with the six Stripe subscription lifecycle events that actually matter — what Cashier handles for you and how to write the rest.
Stripe Checkout sessions in Laravel — without Cashier
Laravel Cashier is excellent for subscriptions, but one-time payments don't need that overhead. Here's how to wire up Stripe Checkout directly with the PHP SDK.
Adding a Stripe Customer Portal to your Laravel app with Cashier
Cashier's `redirectToBillingPortal()` gives your users a full subscription management UI — plan changes, cancellations, invoice downloads — in a single redirect. Here's how to wire it up.
Usage-based billing with Stripe Meters and Laravel Cashier
Stripe Meters replace the old metered subscription records. Here's how to wire them up with Laravel Cashier to charge customers per API call, token, or any countable unit.
Verifying Stripe webhook signatures in Laravel without Cashier
You don't need Laravel Cashier to verify Stripe webhook signatures. Here's the minimal setup using the Stripe PHP SDK directly in a controller.
Implementing Stripe trials for memberships: patterns and best practices
How to add trials to membership subscriptions using Stripe and Laravel Cashier, with patterns for free-until, trial_months, and safe webhook handling.