whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
Modules
/
UniversalBundle
/
Modules
/
Sms
/
Http
/
Requests
/
Upload File:
files >> //home/kckglobal/www/portal/Modules/UniversalBundle/Modules/Sms/Http/Requests/StoreSmsSetting.php
<?php namespace Modules\Sms\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class StoreSmsSetting extends FormRequest { /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { $gateway = request()->active_gateway; if ($gateway == 'twilio') { return [ 'account_sid' => 'required', 'auth_token' => 'required', 'from_number' => 'required', 'whatapp_from_number' => 'required_if:whatsapp_status,1' ]; } if ($gateway == 'nexmo') { return [ 'nexmo_api_key' => 'required', 'nexmo_api_secret' => 'required', 'nexmo_from_number' => 'required', ]; } if ($gateway == 'msg91') { return [ 'msg91_auth_key' => 'required', 'msg91_from' => 'required', 'msg91_flow_id.*' => 'required', ]; } if ($gateway == 'telegram') { return [ 'telegram_bot_token' => 'required', 'telegram_bot_name' => 'required', ]; } return [ ]; } /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } public function attributes() { return [ 'msg91_flow_id.*' => __('sms::app.msg91FlowId'), ]; } }
Copyright ©2021 || Defacer Indonesia