1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 01:41:34 +02:00
invoiceninja/app/Http/Requests/CreateExpenseCategoryRequest.php

28 lines
635 B
PHP
Raw Normal View History

2016-07-06 20:35:16 +02:00
<?php namespace App\Http\Requests;
class CreateExpenseCategoryRequest extends ExpenseCategoryRequest
{
// Expenses
/**
* 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 20:35:16 +02:00
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
2016-07-07 14:32:31 +02:00
'name' => sprintf('required|unique:expense_categories,name,,id,account_id,%s', $this->user()->account_id),
2016-07-06 20:35:16 +02:00
];
}
}