mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-31 05:16:49 -04:00
17 lines
312 B
PHP
17 lines
312 B
PHP
<?php
|
|
|
|
namespace Modules\StudioPlusWtiiabaddon\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class StudioPlusIncentiveRole extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'studio_plus_incentive_id',
|
|
'role_id'
|
|
];
|
|
}
|