| 1 | <?php |
||
| 4 | class Badge extends Model |
||
| 5 | { |
||
| 6 | /** |
||
| 7 | * The attributes that are mass assignable. |
||
| 8 | * |
||
| 9 | * @var array |
||
| 10 | */ |
||
| 11 | protected $fillable = [ |
||
| 12 | 'name', |
||
| 13 | 'image', |
||
| 14 | 'type', |
||
| 15 | 'rule' |
||
| 16 | ]; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Get the users that owns the badge. |
||
| 20 | * |
||
| 21 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTomany |
||
| 22 | */ |
||
| 23 | public function users() |
||
| 27 | } |
||
| 28 |