restructured models directory and namespaces to include an extra directory for sorting

This commit is contained in:
2018-12-01 21:46:04 -06:00
parent 5c073d85ee
commit 67e606ad54
38 changed files with 168 additions and 58 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Models\ScheduledTask;
use Illuminate\Database\Eloquent\Model;
class ScheduleJob extends Model
{
protected $table = 'schedule_jobs';
public $timestamps = true;
public $primaryKey = 'id';
protected $fillable = [
'job_name',
'job_state',
];
}