1054 unknown column 'updated_at' in 'field list' laravel

PHP
public $timestamps = false;In the model, write the below code;
public $timestamps = false;

Explanation : By default laravel will expect created_at & updated_at column 
in your table. By making it to false it will override the default setting.

Source

Also in PHP: