1 | <?php |
||
7 | class PointsModel extends Model |
||
8 | { |
||
9 | protected $table = 'gamification_points'; |
||
10 | |||
11 | protected $fillable = [ |
||
12 | 'earner_id', |
||
13 | 'earner_type', |
||
14 | 'rewarder_id', |
||
15 | 'rewarder_type', |
||
16 | 'item_id', |
||
17 | 'item_type', |
||
18 | 'points', |
||
19 | ]; |
||
20 | |||
21 | protected $casts = [ |
||
22 | 'points' => 'int', |
||
23 | ]; |
||
24 | |||
25 | public function earner() |
||
29 | |||
30 | public function rewarder() |
||
34 | |||
35 | public function item() |
||
39 | } |
||
40 |