Skip to content

Instantly share code, notes, and snippets.

@mateusgf
Created July 26, 2013 13:06
Show Gist options
  • Save mateusgf/6088702 to your computer and use it in GitHub Desktop.
Save mateusgf/6088702 to your computer and use it in GitHub Desktop.
<?php
class User extends Basemodel {
public static $rules = array(
'username'=>'required|unique:users|alpha_dash|min:4',
'password'=>'required|alpha_num|between:4,8|confirmed',
'password_confirmation'=>'required|alpha_num|between:4,8'
);
public function questions() {
return $this->has_many('Question');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment