JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour
<?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); } }