資源
Laravel7 30天: 目錄
專案連結: github - laravel7 之 30 天分享
前言
上一篇: Day 17. Eloquent Relationships 多對多
今天要來分享 多態的一對一
關聯表文章區
| 關聯 | 名稱 | 傳送門 |
|---|---|---|
| One To One | 一對一 | Day 15. Eloquent Relationships 一對一 |
| One To Many | 多對多 | Day 16. Eloquent Relationships 一對多 |
| Many To Many | 多對多 | Day 17. Eloquent Relationships 多對多 |
| Polymorphic One To One | 多態的一對一 | Day 18. Eloquent Polymorphic Relationships 多態的一對一 |
| Polymorphic One To Many | 多態的一對多 | Day 19. Eloquent Polymorphic Relationships 多態的一對多 |
| Polymorphic Many To Many | 多態的多對多 | Day 20. Eloquent Polymorphic Relationships 多態的多對多 |
主要內容
表的關係
貼文有一張圖片、使用者也有一張圖片
我可以透過第3張表去存取圖片
資料表關係如下
| |

Model 設定
app/Models/Image.php
| |
app/Models/User.php
| |
app/Models/Post.php
| |
如何使用
- 取得
| |
