Skip to content

Instantly share code, notes, and snippets.

@studio-fars-company
Created June 27, 2018 04:43
Show Gist options
  • Save studio-fars-company/c4f144f11747b9310bdd2fdb158830dd to your computer and use it in GitHub Desktop.
Save studio-fars-company/c4f144f11747b9310bdd2fdb158830dd to your computer and use it in GitHub Desktop.
public function subscribe_cancel(Request $request)//キャンセル用
{
try {
Stripe::setApiKey(env('STRIPE_SECRET'));
$id = Auth::id();//user_id取得
$user = User::find($id);
// すぐにキャンセル
$user->subscription('main')->cancelNow();
return 'Cancel successful';
} catch (\Exception $ex) {
return $ex->getMessage();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment