Usages
use Pratiksh\Payable\Traits\HasPayable;
class Product extends Model
{
use HasPayable;
}HasPayable Available methods
payments
$product->payments;pay
modifyPay
Last updated
use Pratiksh\Payable\Traits\HasPayable;
class Product extends Model
{
use HasPayable;
}$product->payments;Last updated
$product->pay(100)$product->modifyPay($product->payments()->latest()->first(),200) // Modified from 100 to 200