1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Http/Requests/CreateExpenseCategoryRequest.php

33 lines
653 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Http\Requests;
2016-07-06 20:35:16 +02:00
2019-01-30 12:00:26 +01:00
use App\Models\Expense;
2016-07-06 20:35:16 +02:00
class CreateExpenseCategoryRequest extends ExpenseCategoryRequest
{
// Expenses
2017-01-30 20:40:43 +01:00
2016-07-06 20:35:16 +02:00
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
2019-01-30 12:00:26 +01:00
return $this->user()->can('create', Expense::class);
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
];
}
}