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