This commit is contained in:
2023-11-20 02:42:54 +08:00
parent b929cae31e
commit 36f0588ef8
3 changed files with 25 additions and 4 deletions

View File

@@ -37,6 +37,7 @@ public function search(Request $request)
$posts = Post::with('category')
->where('status', 'publish')
->whereRaw("to_tsvector('english', title || ' ' || bites) @@ to_tsquery('english', ?)", [$query])
->where('published_at', '<=', now())
->orderBy('published_at', 'desc')
->cursorPaginate(10);
@@ -74,7 +75,10 @@ public function index(Request $request)
SEOTools::jsonLd();
SEOTools::setTitle($title, false);
$posts = Post::with('category')->where('status', 'publish')->orderBy('published_at', 'desc')->cursorPaginate(10) ?? collect();
$posts = Post::with('category')->where('status', 'publish')
->where('published_at', '<=', now())
->orderBy('published_at', 'desc')
->cursorPaginate(10) ?? collect();
// breadcrumb json ld
$listItems = [];
@@ -119,7 +123,11 @@ public function category(Request $request, $category_slug)
// Get the posts associated with these category IDs
$postIds = PostCategory::whereIn('category_id', $categoryIds)->pluck('post_id');
$posts = Post::whereIn('id', $postIds)->where('status', 'publish')->orderBy('published_at', 'desc')->cursorPaginate(10);
$posts = Post::whereIn('id', $postIds)
->where('published_at', '<=', now())
->where('status', 'publish')
->orderBy('published_at', 'desc')
->cursorPaginate(10);
$title = $category->name.' News from FutureWalker';