Files
faveo/app/Http/Requests/helpdesk/OtpVerifyRequest.php
Manish Verma 76e85db070 update 1.0.8.0
Commits for version update
2016-10-17 12:02:27 +05:30

37 lines
614 B
PHP

<?php
namespace App\Http\Requests\helpdesk;
use App\Http\Requests\Request;
/**
* LoginRequest.
*
* @author Ladybird <info@ladybirdweb.com>
*/
class OtpVerifyRequest extends Request
{
/**
* 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',
'mobile' => 'required',
];
}
}