diff --git a/src/Concerns/ManagesCustomer.php b/src/Concerns/ManagesCustomer.php index 93226a5..d90468c 100644 --- a/src/Concerns/ManagesCustomer.php +++ b/src/Concerns/ManagesCustomer.php @@ -37,7 +37,7 @@ public function createAsCustomer(array $options = []) // Attempt to find the customer by email address first... $response = Cashier::api('GET', 'customers', [ 'status' => 'active,archived', - 'email' => $options['email'], + 'email' => $options['email'], ])['data'][0] ?? null; // If we can't find the customer by email, we'll create them on Paddle...