样式,排序,翻页保留查询条件,继续抽象

This commit is contained in:
2022-07-30 11:53:48 +08:00
parent b9a46390e0
commit 33af2c5713
9 changed files with 37 additions and 92 deletions

View File

@ -14,7 +14,7 @@ class DanmakuQueryController extends BaseController
$video_list = Videos::query()
->withCount("danmakus", "bilibili_danmakus", "ixigua_danmakus", "douyin_danmakus")
->orderByDesc("created_at")
->paginate(10);
->paginate(10)->withQueryString();
return view("danmaku.index", [
"video_list" => $video_list,
]);
@ -35,7 +35,7 @@ class DanmakuQueryController extends BaseController
}
}
}
$danmakus = $query->orderBy("created_at", "asc")->paginate(20);
$danmakus = $query->orderBy("created_at", "asc")->paginate(20)->withQueryString();
return view("danmaku.search_index", [
"keyword" => $keyword,
"video" => $video,