1 | <?php |
||
13 | class GcmToken extends Model |
||
14 | { |
||
15 | /** |
||
16 | * The attributes that are mass assignable. |
||
17 | * |
||
18 | * @var array |
||
19 | */ |
||
20 | protected $fillable = [ |
||
21 | 'registration_id' |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * A message belong to a user |
||
26 | * |
||
27 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
28 | */ |
||
29 | public function user() |
||
33 | } |