Invoice upload by robot
This commit is contained in:
12
app/Models/CronTask.php
Normal file
12
app/Models/CronTask.php
Normal 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'];
|
||||
}
|
||||
Reference in New Issue
Block a user