Advertisement
ricardogodoi

ContactRequest

May 4th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. public function authorize()
  2. {
  3. return true;
  4. }
  5.  
  6. /**
  7. * Get the validation rules that apply to the request.
  8. *
  9. * @return array
  10. */
  11. public function rules()
  12. {
  13. return [
  14. //
  15. 'subject' => 'required',
  16. 'name' => 'required',
  17. 'email' => 'email|required',
  18. 'phone' => 'required',
  19. 'message' => 'required'
  20. ];
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement