Выдает вот такое:
FatalErrorException in User.php line 31:
App\User and Illuminate\Database\Eloquent\Model define the same property ($hidden) in the composition of App\User. However, the definition differs and is considered incompatible. Class was composed
Судя по поиску в гугле, я такой один :)
UPD: Код модели User.php
Ничего не трогал
<?php
namespace App;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Authenticatable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email', 'password',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
}