2020-05-23 05:28:24 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-05-23 05:28:24 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-05-23 05:28:24 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-05-23 05:28:24 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\PaymentTerm;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
|
2020-05-25 03:57:08 +02:00
|
|
|
class EditPaymentTermRequest extends Request
|
2020-05-23 05:28:24 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
|
|
|
return auth()->user()->isAdmin();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
$rules = [];
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-05-23 05:28:24 +02:00
|
|
|
return $rules;
|
|
|
|
}
|
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2020-05-23 05:28:24 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
|
|
//$input['id'] = $this->encodePrimaryKey($input['id']);
|
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
|
|
|
}
|