1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-17 00:22:51 +01:00
invoiceninja/app/Http/Requests/CreateProjectRequest.php

28 lines
623 B
PHP
Raw Normal View History

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