When I create a new subscription on stripe using Laravel Cashier, that will charge the amount immediately. However, I want to create a new subscription without charging the amount and instead set a charge date manually. Is there any option to select the charge date?
Route::post('/user/subscribe', function (Request $request) {
$request->user()->newSubscription(
'default', 'price_monthly'
)->create($request->paymentMethodId);
});
When a new subscription is created, the following events occur.
