gpt4 book ai didi

php - 我想显示表的值而不是在 laravel 中显示 id

转载 作者:行者123 更新时间:2023-11-28 23:56:24 24 4
gpt4 key购买 nike

我在项目中使用 laravel 5。我在另一个表中使用不同的 id 使用同一个表的同一列 2 次。现在,当我想在 View 页面中将两个名称分别显示到 id 时,它会显示问题..

<div class="tab-pane fade in active" id="tab1primary">
<ul>
<label>PREVIOUS CLUB</label>
{!! Form::select('previous_club_id',$club,null,array('class'=>'form-control')) !!}
</ul>
</div>
<div class="tab-pane fade" id="tab2primary">
<ul>
<label>CURRENT CLUB</label>
{!! Form::select('current_club_id',$club,null,array('class'=>'form-control')) !!}
</ul>
</div>

我已经插入数据并且插入成功..当我显示 id 时,它只显示 id..

 <td>{!!$playerhistories->current_club_id!!}</td> 
<td>{!!$playerhistories->previous_club_id!!}</td>

但问题是当我想显示以前的俱乐部名称和当前的俱乐部名称...

<td>{!!$playerhistories->club->name!!}</td> 

它显示了这个问题:试图获取非对象的属性( View :/var/www/fcimsProject/resources/views/admin/playerhistories/index.blade.php)

我在 eleqount of playerhistory 模型中有一个关系:

public function club()
{
return $this->belongsTo('App\Club');
}

in an match event between two team,suppose argentina and brazil we are using club table and store club name of both and how to display in view page both club name????

请回复...

最佳答案

你有一个不符合 laravel 标准的外键。在这种情况下,您必须创建关系并告诉 Eloquent 外键是什么。

public function currentClub() {
return $this->belongsTo('Club', 'current_club_id');
}

public function previousClub() {
return $this->belongsTo('Club', 'previous_club_id');
}

有了这些,你可以调用$playerhistories->currentClub->name$playerhistories->previousClub->name从俱乐部获取数据。

有关如何与自定义外键建立关系的信息可以在the laravel documentations 中找到。 .

关于php - 我想显示表的值而不是在 laravel 中显示 id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31554972/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com