mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 22:22:32 +01:00
9d1cb37835
Added the ability to get payment_terms, payment_term and create a new payment_term via the API.
37 lines
603 B
PHP
37 lines
603 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
class CreatePaymentTermAPIRequest extends Request
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public function authorize()
|
|
{
|
|
return $this->user()->can('create', ENTITY_PAYMENT_TERM);
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
|
|
public function rules()
|
|
{
|
|
|
|
$rules = [
|
|
'num_days' => 'required|numeric|unique:payment_terms',
|
|
];
|
|
|
|
|
|
return $rules;
|
|
}
|
|
}
|