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

38 lines
681 B
PHP

<?php
namespace App\Http\Requests\helpdesk;
use App\Http\Requests\Request;
/**
* ProfileRequest.
*
* @author Ladybird <info@ladybirdweb.com>
*/
class ProfileRequest 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 [
'first_name' => 'required',
'profile_pic' => 'mimes:png,jpeg',
// 'mobile' => 'unique:users,mobile',
];
}
}