2017-01-30 20:40:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests;
|
2016-11-29 18:47:26 +01:00
|
|
|
|
|
|
|
class UpdateProjectRequest extends ProjectRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
2017-07-12 22:56:31 +02:00
|
|
|
return $this->entity() && $this->user()->can('edit', $this->entity());
|
2016-11-29 18:47:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
2017-07-12 22:56:31 +02:00
|
|
|
if (! $this->entity()) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
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),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|