예제 #1
0
 public function onStart()
 {
     $this['posts'] = Post::isPublished()->orderBy('published_at', 'desc')->take(2)->get();
 }
예제 #2
0
 protected function loadPost()
 {
     $slug = $this->property('slug');
     $post = NewsPost::isPublished()->where('slug', $slug)->first();
     return $post;
 }