mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-01 08:16:55 -04:00
19 lines
381 B
PHP
19 lines
381 B
PHP
<?php
|
|
|
|
namespace Modules\JobPortal\Entities;
|
|
|
|
use Modules\JobPortal\Entities\BaseModel;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class CompanyRequest extends BaseModel
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [];
|
|
|
|
protected static function newFactory()
|
|
{
|
|
return \Modules\JobPortal\Database\factories\CompanyRequestFactory::new();
|
|
}
|
|
}
|