Add sensible maximum values.

This commit is contained in:
James Cole
2023-04-26 06:17:04 +02:00
parent 38ed70243e
commit 0a60f63bf8
28 changed files with 48 additions and 48 deletions

View File

@@ -73,7 +73,7 @@ class ExportRequest extends FormRequest
{
return [
'type' => 'in:csv',
'accounts' => 'min:1',
'accounts' => 'min:1|max:65536',
'start' => 'date|before:end',
'end' => 'date|after:start',
];