Skip to content

Instantly share code, notes, and snippets.

@kamerk22
Created May 24, 2018 03:59
Show Gist options
  • Save kamerk22/c0d52b0d3e5fbbf21ad6766737ca1c2b to your computer and use it in GitHub Desktop.
Save kamerk22/c0d52b0d3e5fbbf21ad6766737ca1c2b to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class UserStoreRequest extends FormRequest
{
/**
* 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|email|unique:users',
'name' => 'required|string|max:50',
'password' => 'required'
];
}
/**
* Custom message for validation
*
* @return array
*/
public function messages()
{
return [
'email.required' => 'Email is required!',
'name.required' => 'Name is required!',
'password.required' => 'Password is required!'
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment