component_id is fillable within the model

This commit is contained in:
James Brooks
2014-12-01 12:57:40 +00:00
parent c3a152ecf9
commit 013a1186ad

View File

@@ -15,7 +15,7 @@ class Incident extends Eloquent implements \Dingo\Api\Transformer\TransformableI
'message' => 'required',
];
protected $fillable = ['component', 'name', 'status', 'message'];
protected $fillable = ['component_id', 'name', 'status', 'message'];
protected $appends = ['humanStatus'];