Files
wticreatorstudio/Modules/JobPortal/Entities/TermsTranslation.php
T
2024-02-12 22:54:20 -05:00

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'
];
}