コード例 #1
0
ファイル: Section.php プロジェクト: christiancable/nexus5ive
 public function getMostRecentPostAttribute()
 {
     $post = null;
     $topicIDs = Topic::select('id')->where('section_id', $this->id)->get()->toArray();
     $postID = Post::select('id')->whereIn('topic_id', $topicIDs)->orderBy('id', 'desc')->get()->first();
     if ($postID) {
         $post = Post::find($postID->id);
     }
     return $post;
 }