Skip to content

Instantly share code, notes, and snippets.

@hthuong09
Created December 10, 2015 03:11
Show Gist options
  • Save hthuong09/a6e424ca356f44908036 to your computer and use it in GitHub Desktop.
Save hthuong09/a6e424ca356f44908036 to your computer and use it in GitHub Desktop.
Global scope eloquent
<?php
class Comment extends Eloquent {
public function newQuery()
{
return parent::newQuery()->where('cat', '=', 6);
}
// Now when you will perform a query like :
// Comment::count()
// Your scope defined in the newQuery will be used
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment