the_mechanic/app/Models/ReturnModel.php
2024-09-25 09:12:05 +05:30

9 lines
631 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class ReturnModel extends Model
{
protected $table = 'return_order';
protected $primaryKey = 'return_order_id';
protected $allowedFields = ['return_order_id','purchase_order_id','return_date','is_selected','order_number','vendor_id','status','billing_address','billing_city','billing_state','billing_country','billing_postal_code','shipping_address','shipping_city','shipping_state','shipping_country','shipping_postal_code','terms_condition','isactive','order_date','contact_person_name','branch_id','contact_person_mobile','description','subtotal','tax','total'];
}