invoiceninja/app/Http/Requests/UpdateContactRequest.php
2017-03-17 10:28:46 +01:00

31 lines
589 B
PHP

<?php
namespace App\Http\Requests;
class UpdateContactRequest extends ContactRequest
{
/**
* 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()
{
return [
'first_name' => 'required',
'last_name' => 'required',
'email' => 'required',
];
}
}