mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
31 lines
637 B
PHP
31 lines
637 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),
|
|
];
|
|
}
|
|
}
|