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

30 lines
549 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Http\Requests;
2016-11-29 18:47:26 +01:00
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 [
2017-11-15 20:49:42 +01:00
'name' => 'required',
2016-12-15 13:17:10 +01:00
'client_id' => 'required',
2016-11-29 18:47:26 +01:00
];
}
}