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