invoiceninja/app/Http/Requests/CreateExpenseCategoryRequest.php

31 lines
637 B
PHP
Raw 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 CreateExpenseCategoryRequest extends ExpenseCategoryRequest
{
// Expenses
2017-01-30 21:40:43 +02:00
2016-07-06 21:35:16 +03:00
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return $this->user()->can('create', ENTITY_EXPENSE_CATEGORY);
2016-07-06 21:35:16 +03:00
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
2016-07-07 15:32:31 +03:00
'name' => sprintf('required|unique:expense_categories,name,,id,account_id,%s', $this->user()->account_id),
2016-07-06 21:35:16 +03:00
];
}
}