Reputation: 105
I have migration like this:
$table->decimal('amount_settle', 15, 2);
how can validate amount_settle
in controller.
Upvotes: 0
Views: 216
Reputation: 176
through laravel validator you can validate this one by following line of code
$request->validate(["amount_settle"=>'required|numeric|between:0,99.99']);
Upvotes: 2