akaunting/app/Http/Requests/Portal/InvoicePayment.php
2021-07-01 10:50:24 +03:00

21 lines
350 B
PHP

<?php
namespace App\Http\Requests\Portal;
use App\Abstracts\Http\FormRequest;
class InvoicePayment extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
//'payment_method' => 'required|string',
];
}
}