stripe = $stripe; } public function run() { $this->stripe->init(); if($this->stripe->stripe_connect && strlen($this->stripe->company_gateway->getConfigField('account_id')) < 1) throw new StripeConnectFailure('Stripe Connect has not been configured'); $customers = Customer::all([], $this->stripe->stripe_connect_auth); $stripe_customers = $this->stripe->company_gateway->client_gateway_tokens->map(function ($cgt){ $customer = Customer::retrieve($cgt->gateway_customer_reference, $this->stripe->stripe_connect_auth); return [ 'customer' => $cgt->gateway_customer_reference, 'record' => $customer ]; }); $data = [ 'stripe_customer_count' => count($customers), 'stripe_customers' => $stripe_customers, ]; return response()->json($data, 200); } }