StocksNew/Modules/Order/app/Models/PaymentMode.php
Sampanna Rimal afb2c202d6 changes
2024-09-11 12:32:15 +05:45

17 lines
282 B
PHP

<?php
namespace Modules\Order\Models;
use App\Traits\StatusTrait;
use Illuminate\Database\Eloquent\Model;
class PaymentMode extends Model
{
USE StatusTrait;
protected $table = 'tbl_paymentmodes';
protected $guarded = [];
protected $appends = ['status_name'];
}