mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-01 08:16:55 -04:00
19 lines
410 B
PHP
19 lines
410 B
PHP
<?php
|
|
|
|
namespace Modules\JobPortal\Entities;
|
|
|
|
use Modules\JobPortal\Entities\BaseModel;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class CompanyTranslation extends BaseModel
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'jp_company_translations';
|
|
protected $fillable = ['name', 'about'];
|
|
protected $seo_type = 'company_translation';
|
|
protected $cleanFields = [
|
|
'about'
|
|
];
|
|
}
|