mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-03 06:16:14 -04:00
18 lines
285 B
PHP
18 lines
285 B
PHP
<?php
|
|
|
|
namespace Modules\StaffPayroll\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class UserIncentive extends Model
|
|
{
|
|
protected $fillable = [
|
|
'user_id',
|
|
'video_id',
|
|
'incentive_code',
|
|
'title',
|
|
'description',
|
|
'amount'
|
|
];
|
|
}
|