fix unittests issues
API CI/CD / Validate (composer + pint) (push) Successful in 3m6s
API CI/CD / Test (PHPUnit) (push) Failing after 4m53s
API CI/CD / Build frontend assets (push) Successful in 1m2s
API CI/CD / Security audit (push) Failing after 59s
API CI/CD / Deploy to shared hosting (PHP) (push) Has been skipped

This commit is contained in:
root
2026-07-07 20:56:32 -04:00
parent f83f21936f
commit e13df69885
118 changed files with 22138 additions and 1328 deletions
+1 -19
View File
@@ -19,25 +19,7 @@ class Student extends BaseModel
*/
public $timestamps = false;
protected $fillable = [
'school_id',
'firstname',
'lastname',
'dob',
'age',
'gender',
'registration_grade',
'photo_consent',
'is_new',
'parent_id',
'school_year',
'semester',
'registration_date',
'tuition_paid',
'year_of_registration',
'rfid_tag',
'is_active',
];
protected $fillable = ['school_id', 'firstname', 'lastname', 'dob', 'age', 'gender', 'is_active', 'registration_grade', 'is_new', 'photo_consent', 'parent_id', 'registration_date', 'tuition_paid', 'rfid_tag', 'semester', 'year_of_registration', 'school_year'];
protected $casts = [
'school_id' => 'string',