Fix views for #1000

This commit is contained in:
James Cole
2017-11-18 05:45:58 +01:00
parent 51a1512a3f
commit 573e72f7fb
6 changed files with 11 additions and 11 deletions

View File

@@ -44,10 +44,10 @@ class BillFormRequest extends Request
return [
'name' => $this->string('name'),
'match' => $this->string('match'),
'amount_min' => $this->float('amount_min'),
'amount_min' => $this->string('amount_min'),
'amount_currency_id_amount_min' => $this->integer('amount_currency_id_amount_min'),
'amount_currency_id_amount_max' => $this->integer('amount_currency_id_amount_max'),
'amount_max' => $this->float('amount_max'),
'amount_max' => $this->string('amount_max'),
'date' => $this->date('date'),
'repeat_freq' => $this->string('repeat_freq'),
'skip' => $this->integer('skip'),