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()]);
}