Fix variables

This commit is contained in:
James Cole
2026-07-09 06:22:42 +02:00
parent 3b32c61ffe
commit 0524afaf93
77 changed files with 198 additions and 179 deletions
+1 -1
View File
@@ -291,7 +291,7 @@ final class ReportController extends Controller
public function postIndex(ReportFormRequest $request): RedirectResponse|View
{
// report type:
$reportType = $request->get('report_type');
$reportType = $request->input('report_type');
$start = $request->getStartDate()->format('Ymd');
$end = $request->getEndDate()->format('Ymd');
$accounts = implode(',', $request->getAccountList()->pluck('id')->toArray());