1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Http/Requests/PaymentTermRequest.php
David Bomba 9d1cb37835
Payment Terms via API (#1808)
Added the ability to get payment_terms, payment_term and create a new payment_term via the API.
2018-01-14 23:21:10 +11:00

9 lines
137 B
PHP

<?php
namespace App\Http\Requests;
class PaymentTermRequest extends EntityRequest
{
protected $entityType = ENTITY_PAYMENT_TERM;
}