Fixes Date issue with incident dates being incorrect (as only loading out the date, not the time)

This commit is contained in:
Aden Fraser
2017-06-23 15:10:37 +01:00
parent 0b3c491c71
commit bcf1f06ca4

View File

@@ -76,7 +76,7 @@ class Incident extends Model implements HasPresenter
protected $casts = [
'visible' => 'int',
'stickied' => 'bool',
'occurred_at' => 'date',
'occurred_at' => 'datetime',
'deleted_at' => 'date',
];