First attempt at job to create transactions for recurring transactions.

This commit is contained in:
James Cole
2018-06-22 18:42:23 +02:00
parent 636cd84f4f
commit db1c27d833
16 changed files with 646 additions and 133 deletions

View File

@@ -515,16 +515,7 @@ class ExpandedForm
*/
public function optionsList(string $type, string $name): string
{
$previousValue = null;
try {
$previousValue = request()->old('post_submit_action');
} catch (RuntimeException $e) {
// don't care
}
$previousValue = $previousValue ?? 'store';
$html = view('form.options', compact('type', 'name', 'previousValue'))->render();
$html = view('form.options', compact('type', 'name'))->render();
return $html;
}