Laravel 5 如何在laravel中设置Auth以及何时设置两个模块

Laravel 5 如何在laravel中设置Auth以及何时设置两个模块,laravel-5,Laravel 5,我安装拉威尔,但只有一个模块管理员,但我想作为管理员,超级管理员不同的模块 php artisan make:auth public function up() { Schema::create(‘users’, function (Blueprint $table) { $table->increments(‘id’); $table->string(‘name’); $table->string(‘email’)->unique(); $table->str

我安装拉威尔,但只有一个模块管理员,但我想作为管理员,超级管理员不同的模块

php artisan make:auth

public function up()
{
Schema::create(‘users’, function (Blueprint $table) {
$table->increments(‘id’);
$table->string(‘name’);
$table->string(‘email’)->unique();
$table->string(‘password’);
$table->strint('adminrole');
$table->string(‘type’);
$table->rememberToken();
$table->timestamps();
 });
}