remove codeigniter

This commit is contained in:
root
2026-06-04 02:41:08 -04:00
parent 4e33882ac7
commit b4e6ac03c5
180 changed files with 457 additions and 2186 deletions
+3 -3
View File
@@ -8,7 +8,7 @@ class ParentNotification extends BaseModel
{
protected $table = 'parent_notifications';
// ✅ CI: useTimestamps = true (created_at/updated_at)
// ✅ legacy: useTimestamps = true (created_at/updated_at)
public $timestamps = true;
protected $fillable = [
@@ -26,7 +26,7 @@ class ParentNotification extends BaseModel
protected $casts = [
'student_id' => 'integer',
// incident_date is stored as Y-m-d in CI usage
// incident_date is stored as Y-m-d in legacy usage
'incident_date' => 'date',
];
@@ -37,7 +37,7 @@ class ParentNotification extends BaseModel
}
/**
* Equivalent of CI hasSent()
* Equivalent of legacy hasSent()
*/
public static function hasSent(
int $studentId,