invoiceninja/app/Http/Requests/CreateProposalCategoryRequest.php

32 lines
731 B
PHP
Raw Normal View History

2018-01-31 14:21:33 +02:00
<?php
namespace App\Http\Requests;
2019-01-30 22:00:26 +11:00
use App\Models\Proposal;
use App\Models\ProposalCategory;
2018-01-31 16:40:47 +02:00
class CreateProposalCategoryRequest extends ProposalCategoryRequest
2018-01-31 14:21:33 +02:00
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
2019-01-30 22:00:26 +11:00
return $this->user()->can('create', Proposal::class) || $this->user()->can('create', ProposalCategory::class);
2018-01-31 14:21:33 +02:00
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
2018-02-08 13:41:22 +02:00
'name' => sprintf('required|unique:proposal_categories,name,,id,account_id,%s', $this->user()->account_id),
2018-01-31 14:21:33 +02:00
];
}
}