Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public function rules()
  2. {
  3.     return [
  4.         'lat' => 'required',
  5.         'lng' => 'required'
  6.     ];
  7. }
  8.  
  9. public function messages()
  10. {
  11.     return [
  12.         'lat.required' => 'Please select a location on the map',
  13.         'lng.required' => 'Please select a location on the map',
  14.     ];
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement