コード例 #1
0
ファイル: home.htm.php プロジェクト: ajdeguzman/ucu-xyz
 public function onStart()
 {
     $this['posts'] = Post::isPublished()->orderBy('published_at', 'desc')->take(2)->get();
 }
コード例 #2
0
ファイル: Post.php プロジェクト: mechiko/staff-october
 protected function loadPost()
 {
     $slug = $this->property('slug');
     $post = NewsPost::isPublished()->where('slug', $slug)->first();
     return $post;
 }