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