stripe->getInvoices()['data'] ); } /** * Get single invoice by invoice $token */ public function show(string $customer, string $token): View { return view('vuefilemanager.invoice') ->with('settings', get_settings_in_json()) ->with('invoice', $this->stripe->getUserInvoice($customer, $token)); } }