first commit
This commit is contained in:
22
Modules/Admin/app/Models/ProgressStatus.php
Normal file
22
Modules/Admin/app/Models/ProgressStatus.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user