1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 23:22:52 +01:00
invoiceninja/app/Http/Requests/UpdateProjectRequest.php

27 lines
606 B
PHP
Raw Normal View History

2016-11-29 18:47:26 +01:00
<?php namespace App\Http\Requests;
class UpdateProjectRequest extends ProjectRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return $this->user()->can('edit', $this->entity());
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
2017-01-30 17:05:31 +01:00
return [
2016-11-29 18:47:26 +01:00
'name' => sprintf('required|unique:projects,name,%s,id,account_id,%s', $this->entity()->id, $this->user()->account_id),
];
}
}