Добавлена сортировка по номеру архива
Some checks failed
Build and Push Docker Image / test (push) Failing after 4s
Build and Push Docker Image / build (push) Failing after 25s

This commit is contained in:
brusnitsyn
2026-02-27 15:11:48 +09:00
parent 8a9f962914
commit 707d66a532

View File

@@ -17,7 +17,8 @@ class ArchiveCardService
) : LengthAwarePaginator ) : LengthAwarePaginator
{ {
$query = ArchiveInfo::with(['misHistory', 'foxproHistory']) $query = ArchiveInfo::with(['misHistory', 'foxproHistory'])
->orderBy('post_in', 'desc'); ->orderBy('post_in', 'desc')
->orderBy('archive_num', 'asc');
// Поиск по тексту (если передан) // Поиск по тексту (если передан)
if (!empty($searchText)) { if (!empty($searchText)) {