Пример #1
0
 public function search(Request $request)
 {
     $posts = Post::where('status', '!=', 'trashed')->where('title', 'like', '%' . $request->term . '%')->paginate(30);
     return view('larapress::posts.index')->with('posts', $posts);
 }
Пример #2
0
 public static function inCategory($category, $qty = 30)
 {
     return Post::where('category', '=', $category)->paginate($qty);
 }