2
最近私はLaravelを使い始めました。ログインして登録するにはartisan make:auth
を実行しました。Laravel 5.2のログインテーブルを変更
問題は、私が既に持っていたテーブルを使用したい、それはpartners
と呼ばれ、users
という新しいテーブルを作成しないことです。
これを行う方法はありますか?あなたに
最近私はLaravelを使い始めました。ログインして登録するにはartisan make:auth
を実行しました。Laravel 5.2のログインテーブルを変更
問題は、私が既に持っていたテーブルを使用したい、それはpartners
と呼ばれ、users
という新しいテーブルを作成しないことです。
これを行う方法はありますか?あなたに
:config/auth.php
が、これはこれは大丈夫
する必要がありますあなたの パートナーモデルに続いて<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Partner extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'partners'; // specify table name
//rest of the model
}
を
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => App\Partner::class, //put the right model name here that will handle the login/registration or you can use database driver
],
],
を変更しません