我在Laravel中有一个项目和广告项目对象。我想在项目和广告项目之间建立一对一的关系
项目类如下所示
<?php
namespace App;
use IlluminateDatabaseEloquentModel;
class Item extends Model
{
//
public function Category(){
return $this->belongsTo(Category::class);
}
public function Currency(){
return $this->hasOne(Currency::class);
}
public function AdvertItem(){
return $this->hasOne(AdvertItems::class);
}
}
广告项类如下所示
<?php
namespace App;
use IlluminateDatabaseEloquentModel;
class AdvertItems extends Model
{
protected $guarded = [];
//
public function items(){
return $this->belongsTo(Item::class);
}
}
但是当我调用广告项时,我只看到 item_id = 1 而不是项对象。
项目表是这样创建的
class CreateItemsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('items', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('description');
$table->unsignedBigInteger('currency_lookup_id');
$table->unsignedBigInteger('category_id')->index();
$table->unsignedBigInteger('price');
$table->string("image_path");
$table->string('sale_ind');
$table->Date('eff_from');
$table->Date('eff_to');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('item');
}
}
广告表是这样创建的
class CreateAdvertItemsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('advert_items', function (Blueprint $table) {
$table->bigIncrements('id');
$table->unsignedBigInteger('item_id');
$table->unsignedBigInteger('customer_id');
$table->Date('eff_from');
$table->Date('eff_to');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('advert_items');
}
}
请协助。
以下规则将为您提供帮助。
-
始终以小写字母开头的关系名称。 为类而不是方法保存大写字母。
-
模型应为单数
-
注意名字的多个。 应该只有一个的东西应该是单数的。因此,在您的 1:1 关系中,两个关系名称都应该是单数。
广告项目类
public function item(){
return $this->belongsTo(Item::class);
}
然后,如果您有项目并想要广告项目,您应该load
它
$item->load('advertitem');
或者相反
$advertItem->load('item');