Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class RedeemCodeReward extends Model |
||
8 | { |
||
9 | |||
10 | protected $fillable = ['redeem_code_id', 'type', 'amount', 'item_id']; |
||
11 | protected $visible = ['type', 'amount', 'item_id']; |
||
12 | |||
13 | public function redeemCode() |
||
14 | { |
||
15 | return $this->belongsTo('Furic\RedeemCodes\Models\RedeemCode'); |
||
16 | } |
||
17 | |||
18 | public function event() |
||
21 | } |
||
22 | |||
24 |