Laravel Eloquent update created_at value

Viewed 10528

I need to change a post created_at because i send sms to posts created at this month according to created_at. When i try with this created_at does not change value!

public function Controller(Posts $post){
    $post->update(['created_at'=>Carbon::today()]);
}
3 Answers
Related