【发布时间】:2020-12-10 13:50:58
【问题描述】:
我需要在用户和许多商店之间建立关系。我已经创建了三个模型
Store Model
id name email phone info
1 xyz xyz@gmail.com 9329292922 Small Store
2 abc abc@gmail.com 9494949449 Some Store
User Model
id name email
1 ewd ewd@gmail.com
2 xcv xcv@gmail.com
User_Store
user_id store_id
1 1
1 2
user_store模型是belongstoMany还是hasmany包含什么关系?
【问题讨论】:
标签: laravel-5 eloquent relationship php-7.1