mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 09:01:42 -04:00
15 lines
257 B
PHP
15 lines
257 B
PHP
<?php
|
|
|
|
namespace Modules\StudioPlus\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ContentVariant extends Model
|
|
{
|
|
protected $table = 'studio_content_variants';
|
|
protected $fillable = [
|
|
'code',
|
|
'name'
|
|
];
|
|
}
|