Added the ability to get payment_terms, payment_term and create a new payment_term via the API.
8 lines
137 B
PHP
8 lines
137 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
class PaymentTermRequest extends EntityRequest
|
|
{
|
|
protected $entityType = ENTITY_PAYMENT_TERM;
|
|
}
|