mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 12:34:18 +00:00
20 lines
322 B
PHP
20 lines
322 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DelayedJob extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'jobs_delayed';
|
|
|
|
protected $fillable = [
|
|
'job_class',
|
|
'parameters',
|
|
'execute_at',
|
|
];
|
|
}
|