2017-03-17 10:28:46 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
|
|
|
|
|
|
class UpdateContactRequest extends ContactRequest
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
|
*
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function authorize()
|
|
|
|
|
{
|
2017-07-12 23:56:31 +03:00
|
|
|
return $this->entity() && $this->user()->can('edit', $this->entity());
|
2017-03-17 10:28:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
|
*
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
public function rules()
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
'first_name' => 'required',
|
|
|
|
|
'last_name' => 'required',
|
|
|
|
|
'email' => 'required',
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|