Invoice upload by robot

This commit is contained in:
2026-02-14 00:04:00 +01:00
parent 4f4dff2edd
commit 2b458eccd7
15 changed files with 278 additions and 6 deletions

12
app/Models/CronTask.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
namespace App\Models;
use App\Scopes\CommonModel;
class CronTask extends CommonModel
{
protected $table = 'cron_tasks';
protected $fillable = ['name', 'execution_type', 'schedule_time', 'last_run'];
protected $dates = ['last_run'];
}