我的驗證類看起來像這樣如何驗證金錢在Laravel5請求類
<?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
作爲貨幣領域一樣,如果進入錢以外的任何物品,應當驗證
可以在任何一個幫我在這
什麼是 '錢'?難道它只是一個數字嗎? – Andrius
進行自定義驗證。 – aldrin27
@Satisfaction是的,它可能是浮動我想,但我不知道規則來驗證你能幫助我 – Vikram