reconstruction of the project

This commit is contained in:
root
2026-03-08 16:33:24 -04:00
parent 23b7db1107
commit c8de5f7edc
9157 changed files with 77877 additions and 1073823 deletions
+2 -32
View File
@@ -2,36 +2,6 @@
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Calendar extends Model
class Calendar extends CalendarEvent
{
protected $table = 'calendar_events';
protected $fillable = [
'title',
'date',
'description',
'notify_parent',
'notify_admin',
'notify_teacher',
'no_school',
'semester',
'school_year',
'notification_sent',
'created_at',
'updated_at',
];
public $timestamps = true;
/**
* TODO: Manual port review required for custom CI query methods from Calendar.
* - getEvents()
* - getEventByDate()
* - addEvent()
* - getEventsBySchoolYear()
* - getEventsBySchoolYearAndSemester()
* - supportsEventType()
*
* This automated conversion preserves schema metadata only.
*/
}
}