Some checks failed
continuous-integration/drone/push Build is failing
- Complete GGZ Ecademy Laravel backend application - RESTful API for learning products, members, filters - Authentication and authorization system - Database migrations and seeders - Custom CRUD generator commands - Email notification system - Integration with frontend applications
45 lines
1.0 KiB
PHP
45 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Member;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class ContactStore extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
"id" => 'sometimes|numeric',
|
|
"member_id" => 'required|numeric',
|
|
'function' => '',
|
|
'salutation' => '',
|
|
'initials' => '',
|
|
'firstname' => 'required',
|
|
'middlename' => '',
|
|
'lastname' => 'required',
|
|
'email' => 'required|email',
|
|
'email2' => 'nullable|email',
|
|
'email3' => 'nullable|email',
|
|
'phone' => '',
|
|
'job_title' => '',
|
|
'mobile' => '',
|
|
'address_id' => 'nullable|numeric',
|
|
];
|
|
}
|
|
}
|