Skip to content

Instantly share code, notes, and snippets.

@mateusgf
Created July 19, 2013 14:04
Show Gist options
  • Save mateusgf/6039357 to your computer and use it in GitHub Desktop.
Save mateusgf/6039357 to your computer and use it in GitHub Desktop.
<?php
class Basemodel extends Eloquent {
public static function validate($data) {
return Validator::make($data, static::$rules);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment