File "UpdateSmtpSetting.php"
Full Path: /home/isoftco/public_html/hrm/app/Http/Requests/Admin/SmtpSetting/UpdateSmtpSetting.php
File size: 1.06 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Http\Requests\Admin\SmtpSetting;
use App\Http\Requests\AdminCoreRequest;
class UpdateSmtpSetting extends AdminCoreRequest
{
/**
* 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()
{
if ($this->get('type') == 'smtpSetting') {
if ($this->mail_driver == 'smtp') { // if type is smtp
return [
'mail_driver' => 'required',
'mail_host' => 'required',
'mail_port' => 'required',
'mail_username' => 'required',
'mail_password' => 'required',
'mail_from_name' => 'required',
'mail_from_email' => 'required',
];
}
return [
'mail_driver' => 'required',
];
}
}
}