0
以下是我的LevelOneModel。我似乎無法弄清楚我沒有包括什麼。請我需要幫助。如何保存一對多關係到數據庫
我想實現的就是讓所有的用戶ID在LEVELONE表
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class LevelOneModel extends Model
{
public function users(){
return $this->hasMany('App\User');
}
}
下面是我的用戶模型
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'first_name',
'last_name',
'email',
'phone',
'bank_name',
'acct_name',
'acct_number',
'profile_pix',
'sme',
'other_sme',
'password',
];
public function levelone()
{
return $this->belongsTo('App\LevelOneModel');
}
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
}
而下面是我的水平一個遷移文件
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateLevelOneTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('level_one', function (Blueprint $table) {
$table->increments('id');
$table->integer('users_id')->unsigned();
$table->integer('upline_id')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('level_one');
}
}
謝謝
您是否收到任何錯誤? –
沒有錯誤。在此之前,我沒有遵循命名慣例。我的模型名稱與我的表名不同步,但現在已更正。我是Laravel新手。當用戶註冊時,不知道如何將用戶表連接到levelone表。 –
不知道如何填充levelone表,以便在用戶註冊時填充列。 –