invoiceninja/app/Http/Requests/UpdateExpenseCategoryRequest.php

34 lines
753 B
PHP
Raw Permalink Normal View History

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