laravel-cashier Questions
3
Good Day,
I'm working on a project involving Laravel Cashier. I want to give user's the ability to update their subscription quantity and get charged immediately (which I have been able to achieve,...
Evelyne asked 14/7, 2020 at 0:56
1
I'm currently trying to use Laravel Cashier to handle Billing inside a React application. When using a test card that requires 3D secure (pulled directly from Stripes Documentation) (40000000000032...
Brittni asked 19/11, 2019 at 19:51
2
I am using Laravel Cashier to implement a recurring payment system. I need a plan to make subscription. Stripe doc says : "You can create plans using the API, or in the Stripe Dashboard." But when ...
Ratline asked 6/6, 2020 at 22:2
2
I am currently in test mode with Stripe.
I cancelled a users subscription is Stripe dashboard, but the webhook I set up on my site's web server (which uses Laravel Cashier) does not fire i.e. the s...
Toxic asked 12/4, 2018 at 17:36
4
I am trying to create a subscription but get the error "The resource ID cannot be null or whitespace". I have stripe and cashier installed and migrated.
<?php
namespace App\Http\Contro...
Sonasonant asked 27/9, 2021 at 21:1
2
Suppose i have created a product on stripe with API ID "price_1IYwYtA4vM4p6MlHCuiAZx9X" of cost $25.00USD
So how can we retrieve the cost of this product using API id using laravel cashie...
Watertight asked 5/4, 2021 at 19:21
2
Solved
I am creating a Stripe subscription with Laravel cashier. I have successfully created a subscription in Stripe with metadata. How to retrieve all subscriptions (with metadata) of a customer.?
Belo...
Impower asked 24/4, 2019 at 13:3
2
I have created a subscription for any of product using laravel cashier and the subscription is for one month then in id of subscription user wants to sowngrade or upgrade his subscription then how ...
Barbaresi asked 6/4, 2021 at 20:51
1
Solved
I'm using Laravel Cashier package.
I've added below line AppServiceProvider.php > boot method
Cashier::ignoreMigrations();
I've create my own migration i.e: create_subscriptions_table and crea...
Arsis asked 11/6, 2021 at 9:10
3
Solved
I'm a bit perplexed. I have a simple method on my User (actually "Customer") model to return a user's subscription renewal date:
public function subscriptionRenewalDate() : string
{
$sub...
Personable asked 15/3, 2021 at 18:25
6
Solved
I followed this tutorial step by step:
https://appdividend.com/2018/12/05/laravel-stripe-payment-gateway-integration-tutorial-with-example/
However, when I go to test it out, I get the following e...
Inspissate asked 14/8, 2019 at 20:52
2
I got this error message when trying to add a new subscription using Laravel Cashier.
Unrecognized request URL (GET: /v1/customers/). If you are trying to list objects, remove the trailing slash. ...
Cauley asked 10/6, 2020 at 19:28
1
Solved
I used this code to cancel stripe subscription with prorate
$user = User::find(Auth::id());
$subscription = \Stripe\Subscription::retrieve(
$user->subscription('main')->stripe_id
);
$su...
Shandra asked 16/6, 2020 at 7:24
3
Solved
Stripe was working fine with my Laravel application, and suddenly it started giving me this error in the console: Uncaught IntegrationError: Please call Stripe() with your publishable key. You used...
Gunpowder asked 29/1, 2020 at 18:57
1
Solved
On Stripe document / Laravel cashier it says it can send email automatically after invoice was created. I tried to switch the settings related on that on Stripe's settings menu, but I am not receiv...
Cattish asked 20/1, 2020 at 3:53
2
Solved
The documentation on Laravel Cashier is quite vague and misses some very important details like what the $stripeToken is and where does it come from?
So to create a new subscription we do this:
$...
Thermocouple asked 13/6, 2018 at 11:20
2
I'm using Laravel cashier 7.0, and I'd like to fire some methods after a subscription is successful. I hoped there would be some events I could listen for, but that doesn't seem to be the case (unl...
Loanloanda asked 16/10, 2017 at 13:11
2
Solved
I want to create a plan from my application on stripe. The scenario is that users are charged with different prices as recurring payments. So, that is why I want to create plan for each user.
I am...
Certifiable asked 13/6, 2015 at 9:45
1
How to obtain a list of subscription plans from stripe with Laravel 5.4?
Is there even a way to retrieve a list of subscription plans?
the following checks if a user is subscribed to a plan
@if(...
Saltwater asked 27/9, 2017 at 14:39
2
I'm using Laravel Cashier along with Stripe to manage subscriptions. The user will supply their credit card information when signing up, but they won't be subscribed in a specific plan at this poin...
Accouchement asked 30/3, 2016 at 17:4
3
Solved
I have subscribed a user to a subscription plan through Laravel's Cashier package. I now want to display the date the user will next be billed, however this doesn't appear to be an available throug...
Hyla asked 10/1, 2017 at 19:11
0
I'm currently integrating Laravel Cashier (using Stripe) into a small application that has the following three tiers of account;
Free
Basic (e.g. £1.99/month)
Premium (e.g. £4.99/month)
The cur...
Dislike asked 30/7, 2017 at 22:35
1
I am new to laravel and have been working with cashier for a web app I am developing. In my app a user creates their account and company and they are allowed to use the app. Because a company can h...
Piedadpiedmont asked 13/12, 2016 at 20:59
3
I'm using the following to override the default handleCustomerSubscriptionDeleted method by placing the following in app/Http/Controllers/WebHookController.php:
<?php namespace App\Http\Control...
Indoxyl asked 20/6, 2015 at 15:30
1
© 2022 - 2024 — McMap. All rights reserved.