Fix Laravel 5.5 query scoping

This commit is contained in:
Toby Zerner 2018-01-21 08:28:08 +10:30
parent 64b30faa39
commit ee8d7c63cd

View File

@ -171,7 +171,7 @@ class Post extends AbstractModel
*/
public function scopeAllTypes(Builder $query)
{
return $this->removeGlobalScopes($query);
return $query->withoutGlobalScopes();
}
/**