'required|integer|is_not_unique[students.id]', 'parent_id' => 'required|integer|is_not_unique[parents.id]', 'relationship' => 'required|in_list[AYAH,IBU,WALI]', ]; 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 = []; }