Upgrade to Pro — share decks privately, control downloads, hide ads and more …

LaraGirls x Star Rocket 12月份讀書會 #2

LaraGirls x Star Rocket 12月份讀書會 #2

【 簡報單元 】
1. ROUTING
2. CONTROLLER
3. VIEW
4. Migration

---
【 簡報檔案由 2 位分享者 CC 授權 】
Wilson、Luna | LaraGirls 共同發起人

---
【快樂學程式粉絲專頁 】
http://bit.ly/2JPCnH5

【 Star Rocket 粉絲專頁】
https://www.facebook.com/starrocket.io/

Star Rocket

December 26, 2018
Tweet

More Decks by Star Rocket

Other Decks in Programming

Transcript

  1. CONTROLLER 正常的狀況下,在 routes 定義的 endpoint 不太 可能只處理單⼀邏輯,⽽且如果把開發邏輯都寫在 routes 在架構上也不符合 MVC

    原則。 Laravel Controller 是定義開發邏輯的⼀個類別, 開發者可以透過繼承 Controller 定義不同邏輯的 開發。Controller 的⽬錄統⼀放在 app/Http/Controllers。 補充: - https://blog.johnsonlu.org/laravel-controller/