mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-21 13:00:55 -04:00
Added the ability to get payment_terms, payment_term and create a new payment_term via the API.
9 lines
137 B
PHP
9 lines
137 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
class PaymentTermRequest extends EntityRequest
|
|
{
|
|
protected $entityType = ENTITY_PAYMENT_TERM;
|
|
}
|