Files
presensi/app/Modules/Notification/Models/ParentModel.php
2026-03-05 14:37:36 +07:00

54 lines
1.4 KiB
PHP

<?php
namespace App\Modules\Notification\Models;
use App\Modules\Notification\Entities\Parent as ParentEntity;
use CodeIgniter\Model;
/**
* Parent Model
*
* Handles database operations for parents.
*/
class ParentModel extends Model
{
protected $table = 'parents';
protected $primaryKey = 'id';
protected $useAutoIncrement = true;
protected $returnType = ParentEntity::class;
protected $useSoftDeletes = false;
protected $protectFields = true;
protected $allowedFields = [
'name',
'phone_number',
];
// Dates
protected $useTimestamps = true;
protected $dateFormat = 'datetime';
protected $createdField = 'created_at';
protected $updatedField = 'updated_at';
protected $deletedField = 'deleted_at';
// Validation
protected $validationRules = [
'name' => 'required|max_length[255]',
'phone_number' => 'permit_empty|max_length[20]',
];
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 = [];
}