其實我對乾淨的代碼
一個問題,我嘗試刀片文件得到一定的價值,我兩種方法 我認爲都是正確的,但我需要之間的困惑要知道誰是乾淨,直接使用使用來注入服務通過創建這個方法雄辯安全和乾淨的代碼5.1
@foreach
(Auth::user()->company->country->cities as $city) {{$city->name}}
@endforeach
第二條本辦法的原因
第一種方法在我的刀片更安全我的模型,並使用它在我的刀片使用Laravel 5.1注入服務
public function getCity()
{
foreach(Auth::user()->company->country->cities as $city) {
return $city->name ;
// OR
return $city ;
// i think this is one of benefits to use this approach
// because in my view i can use getCity()->id or getCity()->name
}
}
謝謝你的時間。
粘貼您的代碼,以便我們可以進一步幫助您... –