I\'m using Laravel 5.1. To make it simple, I have the following code
Migration:
Schema::create(\'sitemap_data\', function (Blueprint $table) { // Pri
This is not the case in the question, but same issue will happen if you're using Query Builder instead of Eloquent Model.
If you do
DB::table('users')->where()->update()
instead of
User::where()->update()
updated_at will not be updated.