mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-01 08:16:55 -04:00
21 lines
378 B
PHP
21 lines
378 B
PHP
<?php
|
|
|
|
namespace Modules\JobPortal\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class TermsTranslation extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'jp_terms_translations';
|
|
protected $fillable = [
|
|
'name',
|
|
'content',
|
|
];
|
|
protected $cleanFields = [
|
|
'content'
|
|
];
|
|
}
|