JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "Customer.php"
Full Path: /var/www/laravel_filter/Modules/PaymentGateway/vendor/luigel/laravel-paymongo/src/Models/Customer.php
File size: 547 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Luigel\Paymongo\Models;
use Illuminate\Support\Collection;
use Luigel\Paymongo\Paymongo;
class Customer extends BaseModel
{
public function update(array $payload): BaseModel
{
return (new Paymongo)->customer()->updateCustomer($this, $payload);
}
public function delete(): BaseModel
{
return (new Paymongo)->customer()->deleteCustomer($this);
}
public function paymentMethods(): BaseModel|Collection
{
return (new Paymongo)->customer()->getPaymentMethods($this);
}
}