1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Http/Requests/CreateContactRequest.php
2019-01-30 22:25:37 +11:00

32 lines
629 B
PHP

<?php
namespace App\Http\Requests;
class CreateContactRequest extends ContactRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return $this->user()->can('create', ENTITY_CONTACT);
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'first_name' => 'required',
'last_name' => 'required',
'email' => 'required',
'client_id' => 'required',
];
}
}