📦 feat(project-support): order project support items by creation date in descending order

This commit is contained in:
fsociety
2024-12-23 18:30:26 +01:00
parent 73bed106b4
commit a0171442a9

View File

@@ -22,6 +22,7 @@ state([
'einundzwanzigPleb.profile',
'votes',
])
->orderBy('created_at', 'desc')
->get(),
'isAllowed' => false,
'currentPubkey' => null,
@@ -64,6 +65,7 @@ $delete = function ($id) {
'einundzwanzigPleb.profile',
'votes',
])
->orderBy('created_at', 'desc')
->get();
};