2017-03-17 10:28:46 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
|
|
2019-01-30 22:00:26 +11:00
|
|
|
use App\Models\Client;
|
|
|
|
|
|
2017-03-17 10:28:46 +01:00
|
|
|
class CreateContactRequest extends ContactRequest
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
|
*
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function authorize()
|
|
|
|
|
{
|
2019-01-30 22:00:26 +11:00
|
|
|
return $this->user()->can('create', Client::class);
|
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',
|
2017-03-27 11:33:37 +03:00
|
|
|
'client_id' => 'required',
|
2017-03-17 10:28:46 +01:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|