I\'m updating to laravel 5.3, and I get this message:
[2016-08-23 23:12:39] local.ERROR: BadMethodCallException: Call to undefined method Illuminate\\Databas
Laravel 5.3, the lists() method is removed in favour of the pluck() method. For Example:
$userList = App\User::pluck('name', 'id');