Skip to content

Instantly share code, notes, and snippets.

@grafst
Created August 10, 2017 21:59
Show Gist options
  • Save grafst/b4b4de593b08faf83c997b28f61d214d to your computer and use it in GitHub Desktop.
Save grafst/b4b4de593b08faf83c997b28f61d214d to your computer and use it in GitHub Desktop.
laravel eloquent query template
class News extends Eloquent {
public function newQuery($excludeDeleted = true) {
return parent::newQuery($excludeDeleted)
->where(status, '=', 1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment