inital commit
This commit is contained in:
22
app/Http/Requests/PaymentSettingRequest.php
Normal file
22
app/Http/Requests/PaymentSettingRequest.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests;
|
||||
|
||||
|
||||
class PaymentSettingRequest extends BaseRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
'card_number'=>'required',
|
||||
'expiry'=>'required',
|
||||
'cvv'=>'required'
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user