Skip to content
Advertisement

How can I get the foreign-key name of `user` of `users` table using `Shop` model in laravel?

shops table

JavaScript

Here is the shops table. And it has user_id which is foreign key of users table.

users table

JavaScript

This is the users table

Shop model (relatonship)

JavaScript

Here I try to make a relationship between Shop and User

DashboardController

JavaScript

Here I want to get the name of the seller of the shop

What I am getting after run the project

BadMethodCallException Method IlluminateDatabaseEloquentCollection::seller does not exist.

Advertisement

Answer

$shops is a collection. It’s a collection of instances of Shop Model. And seller is relation of Shop Model.

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement