Allow changing of incident dates. Closes #615

This commit is contained in:
James Brooks
2015-05-19 17:40:04 +01:00
parent babef3f7fb
commit 77d0c20015
11 changed files with 92 additions and 24 deletions

View File

@@ -54,7 +54,16 @@ class Incident extends Model implements HasPresenter
*
* @var string[]
*/
protected $fillable = ['user_id', 'component_id', 'name', 'status', 'message', 'scheduled_at'];
protected $fillable = [
'user_id',
'component_id',
'name',
'status',
'message',
'scheduled_at',
'created_at',
'updated_at',
];
/**
* The accessors to append to the model's serialized form.