mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
28 lines
635 B
PHP
28 lines
635 B
PHP
<?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);
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
'name' => sprintf('required|unique:expense_categories,name,,id,account_id,%s', $this->user()->account_id),
|
|
];
|
|
}
|
|
}
|