В чем разница между -> profile () и -> profile в Laravel? - PullRequest
0 голосов
/ 30 ноября 2018

В чем разница между отношением with->profiles() и ->profiles в Laravel?

Ответы [ 2 ]

0 голосов
/ 30 ноября 2018

->profiles возвращает коллекцию связанных моделей

->profiles() возвращает экземпляр отношения, что удобно, если вы хотите обновить связанные модели

0 голосов
/ 30 ноября 2018

Пример:

$posts = $user->posts; // model -> collection
$posts = $user->posts()->get(); // model -> relation -> collection

Подробнее здесь: https://laracasts.com/discuss/channels/eloquent/dynamic-property-vs-method-in-eloquent-orm

...