mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 23:22:52 +01:00
9d1cb37835
Added the ability to get payment_terms, payment_term and create a new payment_term via the API.
18 lines
257 B
PHP
18 lines
257 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
class UpdatePaymentTermRequest extends EntityRequest
|
|
{
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [];
|
|
}
|
|
}
|