23 lines
480 B
PHP
23 lines
480 B
PHP
<?php
|
|
|
|
namespace Modules\Admin\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Modules\Admin\Database\factories\ProgressStatusFactory;
|
|
|
|
class ProgressStatus extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected $fillable = [];
|
|
|
|
protected static function newFactory(): ProgressStatusFactory
|
|
{
|
|
//return ProgressStatusFactory::new();
|
|
}
|
|
}
|