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