This commit is contained in:
SUM2046
2026-07-03 12:37:30 +05:30
parent f2ad6093d2
commit 7fba009978
3 changed files with 272 additions and 244 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace Modules\DailySalePaymentReportModule\Entities;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class PaymentOption extends Model
{
use HasFactory;
protected $fillable = [
'name',
'account_id',
'is_active',
'percentage',
'type',
'status',
'approved_by',
'approved_at'
];
protected static function newFactory()
{
return \Modules\DailySalePaymentReportModule\Database\factories\PaymentOptionFactory::new();
}
}