I am using Laravel 5.3.
5.3
There is a field expired_at in table articles:
expired_at
articles
public function store(Request $re
In your Article class add following property:
Article
/** * The attributes that should be mutated to dates. * * @var array */ protected $dates = ['expired_at'];
Docs