whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
Modules
/
CyberSecurity
/
Http
/
Requests
/
Upload File:
files >> //home/kckglobal/www/portal/Modules/CyberSecurity/Http/Requests/StoreEmailRequest.php
<?php namespace Modules\CyberSecurity\Http\Requests; use Illuminate\Validation\Rule; use Illuminate\Foundation\Http\FormRequest; class StoreEmailRequest 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 [ 'email' => [ 'required', Rule::unique('blacklist_emails', 'email'), // regex to email or @domain 'regex:/^([a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,})|(@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,})$/' ], ]; } }
Copyright ©2021 || Defacer Indonesia