芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/paymoney/app/Http/Requests/RequestMoney/EmailCheckRequest.php
* @contributor Md Abdur Rahaman <[abdur.techvill@gmail.com]> * @created 20-12-2022 */ namespace App\Http\Requests\RequestMoney; use App\Http\Requests\CustomFormRequest; class EmailCheckRequest extends CustomFormRequest { /** * 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 [ 'receiverEmail' => 'required', ]; } /** * Get custom attributes for validator errors. * * @return array */ public function attributes() { return [ 'receiverEmail' => __('Email'), ]; } }