ok

Mini Shell

Direktori : /home2/selectio/public_html/fms-worksuite/app/Http/Requests/SmtpSetting/
Upload File :
Current File : /home2/selectio/public_html/fms-worksuite/app/Http/Requests/SmtpSetting/UpdateSmtpSetting.php

<?php

namespace App\Http\Requests\SmtpSetting;

use App\Http\Requests\CoreRequest;

class UpdateSmtpSetting extends CoreRequest
{

    /**
     * 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 [
            'mail_driver' => 'required',
            'mail_host' => 'required',
            'mail_port' => 'required',
            'mail_username' => 'required',
            'mail_password' => 'required',
            'mail_from_name' => 'required',
            'mail_from_email' => 'required|email:rfc',
            'mail_encryption' => 'required'
        ];
    }

}

Zerion Mini Shell 1.0