在先前版本的Laravel
中,有一个文件autoload.php
。安装Laravel 5.5
后,找不到该文件。是移动还是删除?
答案 0 :(得分:0)
vendor\autoload.php
答案 1 :(得分:0)
此提交已删除此文件:
https://github.com/laravel/laravel/commit/8914be5fc864ebc6877be38ff3502997e0c62761
他现在在class BusinessAccounts extends Model implements Authenticatable
{
use \Illuminate\Auth\Authenticatable;
protected $table = 'business_accounts';
protected $fillable =
[
'orgNumber', 'password'
];
public $timestamps = false;
protected $primaryKey = 'orgNumber';
}