DEV Community

Fazil Hussain
Fazil Hussain

Posted on

Eloquent Model for pivot table with 3 foreign keys?

I am working on a project with has this kind of an model.

A vendor's table to store all vendor details - A vendor is like a company that offers some service.

vendor

id  | name
----+-------
 1  | abc 
 2  | def

Then I have a Services table which…

Top comments (0)