У меня есть две модели с отношением Один-ко-многим.Я хочу отобразить данные с отношениями в блейде.
Магазинный стол
<strong>id | name | url</strong>
1 | NY | ny |
2 | CA | ca |
Таблица продуктов
<strong>id | shop_id | slug</strong>
1 | 1 | ca
2 | 2 | wa
Shop.php
public function products()
{
return $this->hasMany(Product::class, 'shop_id');
}
Модель продукта
public function shops()
{
return $this->belongsTo(Shop::class, 'id');
}
Controller.php
public function category($slug)
{
$shop = Shop::where('url', $slug)->firstorfail();
$products = Product::with(['shops'])->where(['shop_id' => $shop->id)->get();
$url = Shop::where('id', $products->shop_id)->pluck('url');
}
Маршрут
Route::get('/{url}/{slug}', 'Controller@category')->name('view')->where('slug', '[\w\d\-]+(.*)');
Просмотр
<a href="{{ route('view', [$url, $products->slug]) }}"
Возвращается Свойство [shop_id] не существует в этом экземпляре коллекции.