Ok I got it sorted. Basically, just put any interactions with Stripe in try..catch block like this:
try {
$user->subscription(Input::get('plan'))->create($token);
} catch(Exception $e) {
return $e->getMessage();
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community