Laravel Eloquent With Tables that don’t need timestamps()

Solution:

You need to set the timestamps property on the model to false:

public $timestamps = false;

see the Timestamps section at: http://laravel.com/docs/5.1/eloquent#eloquent-model-conventions