1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Http/Requests/UpdateExpenseCategoryRequest.php

34 lines
753 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Http\Requests;
2016-07-06 20:35:16 +02:00
class UpdateExpenseCategoryRequest extends ExpenseCategoryRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
2017-07-12 22:56:31 +02:00
return $this->entity() && $this->user()->can('edit', $this->entity());
2016-07-06 20:35:16 +02:00
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
2017-07-12 22:56:31 +02:00
if (! $this->entity()) {
return [];
}
2017-01-30 17:05:31 +01:00
return [
2016-07-06 20:35:16 +02:00
'name' => 'required',
2016-07-07 14:32:31 +02:00
'name' => sprintf('required|unique:expense_categories,name,%s,id,account_id,%s', $this->entity()->id, $this->user()->account_id),
2016-07-06 20:35:16 +02:00
];
}
}