How to access the contents of this collection in laravel/php
问题 I am new to Laravel and doing a project to build a mini-social network app.I have a post model that has a relationship with the user model. I have a Post page, where only the posts of the authenticated user and his/her friends will show. In my PostController, i queried for the friends of the authenticated user like so; $friends = Auth::user()->friends(); Where the friends() object has earlier been defined in my friendable trait. That works well as shown in the screen shot. I tried to query