Cronjobs implemented

This commit is contained in:
2026-04-25 00:32:15 +02:00
parent 4878f750bd
commit 2e8daf78e1
10 changed files with 231 additions and 6 deletions

View File

@@ -9,4 +9,8 @@ class CronTask extends CommonModel
protected $table = 'cron_tasks';
protected $fillable = ['name', 'execution_type', 'schedule_time', 'last_run'];
protected $dates = ['last_run'];
protected $casts = [
'last_run' => 'datetime',
];
}