14 lines
229 B
PHP
14 lines
229 B
PHP
<?php
|
|
|
|
namespace App\Helpers\FirstParty\Stripe;
|
|
|
|
use App\Models\User;
|
|
|
|
class StripeHelper
|
|
{
|
|
public static function getUserByStripeID($customer_id)
|
|
{
|
|
return User::where('stripe_id', $customer_id)->first();
|
|
}
|
|
}
|