mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-01 08:16:55 -04:00
19 lines
357 B
PHP
19 lines
357 B
PHP
<?php
|
|
|
|
namespace Modules\JobPortal\Entities;
|
|
|
|
use Modules\JobPortal\Entities\Bookable;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class ReviewMeta extends Bookable
|
|
{
|
|
protected $table = 'jp_review_meta';
|
|
protected $fillable = [
|
|
'review_id',
|
|
'object_id',
|
|
'object_model',
|
|
'name',
|
|
'val',
|
|
];
|
|
}
|