AMS_Backend/app/Models/BranchDetails.php
2025-11-06 13:41:06 +08:00

70 lines
1.7 KiB
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class BranchDetails extends Model
{
protected $table = 'branch_details';
protected $primaryKey = 'branch_id';
protected $useSoftDeletes = true;
protected $allowedFields = [
'branch_name',
'branch_category_id',
'branch_bank',
'branch_bank_no',
'agreement_start',
'agreement_end',
'liscense_one',
'liscense_one_end',
'liscense_two',
'liscense_two_end',
'liscense_three',
'liscense_three_end',
'invoice_id',
'letterhead_id',
'created_at',
'updated_at',
'deleted_at'
];
protected $useAutoIncrement = true;
protected $returnType = 'array';
protected $protectFields = true;
protected bool $allowEmptyInserts = false;
protected bool $updateOnlyChanged = true;
protected array $casts = [];
protected array $castHandlers = [];
// Dates
protected $useTimestamps = false;
protected $dateFormat = 'datetime';
protected $createdField = 'created_at';
protected $updatedField = 'updated_at';
protected $deletedField = 'deleted_at';
// Validation
protected $validationRules = [];
protected $validationMessages = [];
protected $skipValidation = false;
protected $cleanValidationRules = true;
// Callbacks
protected $allowCallbacks = true;
protected $beforeInsert = [];
protected $afterInsert = [];
protected $beforeUpdate = [];
protected $afterUpdate = [];
protected $beforeFind = [];
protected $afterFind = [];
protected $beforeDelete = [];
protected $afterDelete = [];
}