feat(ui): standardize collapsible filters and date selection UI
All checks were successful
Koori-ERP-Deploy-System / deploy-demo (push) Successful in 50s
Koori-ERP-Deploy-System / deploy-production (push) Has been skipped

This commit is contained in:
2026-01-20 14:03:59 +08:00
parent daae429cd4
commit 74728c47b9
6 changed files with 517 additions and 222 deletions

View File

@@ -42,7 +42,7 @@ class UtilityFeeController extends Controller
if ($sortField && $sortDirection) {
$query->orderBy($sortField, $sortDirection);
} else {
$query->orderBy('transaction_date', 'desc');
$query->orderBy('created_at', 'desc');
}
$fees = $query->paginate($request->input('per_page', 15))->withQueryString();