You can show how much a customer will pay in the next billing cycle.
There is a "upcomingInvoice" method in Laravel Cashier (Stripe) to get the upcoming invoice details.
1Route::get('/profile/invoices', function (Request $request) {2 return view('/profile/invoices', [3 'upcomingInvoice' => $request->user()->upcomingInvoice(),4 'invoices' => $request-user()->invoices(),5 ]);6});
Tip given by @oliverds_