<?php
namespace Modules\PaymentGateway\Entities;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class PaymongoPayment extends Model
{
use HasFactory;
protected $fillable = [];
protected static function newFactory()
{
return \Modules\PaymentGateway\Database\factories\PaymongoPaymentFactory::new();
}
}