order csv members

This commit is contained in:
philipp lang 2023-03-14 23:56:30 +01:00
parent ea6a98af18
commit 2fffc17ffc
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ class ExportAction
{
$filter = FilterScope::fromRequest($request->input('filter'));
$contents = $this->handle(Member::withFilter($filter)->get());
$contents = $this->handle(Member::ordered()->withFilter($filter)->get());
Storage::disk('temp')->put('mitglieder.csv', $contents);