akaunting/app/Http/Requests/Portal/InvoicePayment.php

21 lines
350 B
PHP
Raw Normal View History

2017-11-17 02:09:11 +03:00
<?php
2019-11-16 10:21:14 +03:00
namespace App\Http\Requests\Portal;
2017-11-17 02:09:11 +03:00
2019-11-16 10:21:14 +03:00
use App\Abstracts\Http\FormRequest;
2017-11-17 02:09:11 +03:00
2019-11-16 10:21:14 +03:00
class InvoicePayment extends FormRequest
2017-11-17 02:09:11 +03:00
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
2019-11-16 10:21:14 +03:00
//'payment_method' => 'required|string',
2017-11-17 02:09:11 +03:00
];
}
}