예제 #1
0
파일: User.php 프로젝트: Adamzynoni/mybb2
 /**
  * @return \Illuminate\Support\Collection
  */
 public function unreadConversations()
 {
     $conversations = $this->conversationRepository->getUnreadForUser($this->wrappedObject);
     foreach ($conversations as $key => $conversation) {
         $conversations[$key] = app()->make('MyBB\\Core\\Presenters\\Conversation', [$conversation]);
     }
     return $conversations;
 }