📦 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', 'einundzwanzigPleb.profile',
'votes', 'votes',
]) ])
->orderBy('created_at', 'desc')
->get(), ->get(),
'isAllowed' => false, 'isAllowed' => false,
'currentPubkey' => null, 'currentPubkey' => null,
@@ -64,6 +65,7 @@ $delete = function ($id) {
'einundzwanzigPleb.profile', 'einundzwanzigPleb.profile',
'votes', 'votes',
]) ])
->orderBy('created_at', 'desc')
->get(); ->get();
}; };