我的验证类看起来像这样
<?php
namespace App\Http\Requests;
use App\Http\Requests\Request;
class PaymentRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
$rules = array(
'invoiceid'=>'required',
'recieved_amount'=>'required',
'ref_no'=>'required',
'date'=>'required',
'comment'=>'required'
);
}
}
我想验证 recieved_amount
作为 Money 字段 如果输入的不是金钱,它应该被验证
任何人都可以帮助我吗
原文由 Vikram Anand Bhushan 发布,翻译遵循 CC BY-SA 4.0 许可协议
例如,您可以使用它(作为“金额”的金额):
正则表达式将适用于“12”或“12.5”或“12.05”等数量。如果您想要多于两位的小数点,请将“2”替换为您需要的允许小数点。