Skip to content

Instantly share code, notes, and snippets.

@tmdvs
Created November 15, 2012 15:10
Show Gist options
  • Save tmdvs/4079079 to your computer and use it in GitHub Desktop.
Save tmdvs/4079079 to your computer and use it in GitHub Desktop.
class User extends Base
{
public static $table = 'users';
public static $rules = array('email' => 'required|email|unique:users','password' => 'required',);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment