我试图显示来自2个相关数据库表的数据,并且我得到@foreach - 无效参数提供错误。有谁知道我做错了什么,知道如何解决它?
这是我的控制器功能
public function index()
{
return view('Voorraad.index', [
'voorraads' => Voorraad::all(),
'Products' => Producten::all()
]);
}
你可以看到我有一个模特" voorraad"和" producten"它是数据库中的1:n关系" producten"在1面和" voorraad"关注他们之间关系的一面,
这是我的" voorraad"模型
class Voorraad extends Model
// Model Voorraad has the attributes, Aantal and Id;
{
protected $fillable = ['voorraadId','aantal'];
protected $table = 'Voorraad';
public $timestamps = false;
/*
* Voorraad can have multiple products;
*
*/
public function Product()
{
return $this->HasMany('App\Producten', 'Producten_ProductenId');
}
}
这是我的" Producten"模型
class Producten extends Model
{
// model producten holdes the attribues naam, inkoopprijs, verkoopprijs,
protected $fillable = ['productId','naam','inkoopprijs','verkoopprijs'];
protected $table = 'Producten';
public $timestamps = false;
//producten Belongs to "voorraad"
public function voorraad()
{
return $this->belongsTo('App\Voorraad', 'producten_productenId');
}
}
这是我想在我的数据库模型上显示的视图:
@foreach($voorraads as $voorraad)
<tr>
<td>{{$voorraad->voorraadId}}</td>
<td>{{$voorraad->aantal }}</td>
@foreach($voorraad->producten as $products)
<td>{{ $products->Naam }}</td>
<td>{{ $products->InkoopPrijs }}</td>
<td>{{ $products->VerkoopPrijs }}</td>
@endforeach
<td></td>
<td></td>
</tr>
@endforeach
This is my migration for the voorraad Table
public function up()
{
Schema::create('voorraad', function(blueprint $table)
{
$table->increments('id');
$table->string('naam');
$table->foreign('Locaties_Id')
->reference('Id')
->on('locaties')
->onDelete('cascasde');
$table->foreign('Producten_Id')
->reference('Id')
->on('producten')
->onDelete('cascade');
});
}
这是我对producten table的迁移
public function up()
{
Schema::create('producten', function(blueprint $table)
{
$table->increments('id');
$table->decimal('inkoopprijs', '10, 2');
$table->decimal('verkoopprijs', '10, 2');
$table->foreign('Fabrieken_Id')
->reference('Id')
->on('fabrieken')
->onDelete('cascasde');
});
}
答案 0 :(得分:1)
问题出在Voorraad模型中,您在其中定义了关系:
public function Product()
{
return $this->HasMany('App\Producten', 'Producten_ProductenId');
}
但是在视图中,您尝试通过调用
来访问该关系 @foreach($voorraad->producten as $products)
如果您更改模型中的方法,它应该可以正常工作
public function producten()
{
return $this->HasMany('App\Producten', 'Producten_ProductenId');
}