diff --git a/app/Traits/Scopes.php b/app/Traits/Scopes.php index 5d8b46028..b679bc6a9 100644 --- a/app/Traits/Scopes.php +++ b/app/Traits/Scopes.php @@ -17,6 +17,10 @@ trait Scopes */ public function applyTypeScope(Builder $builder, Model $model) { + // Getting type from request causes lots of issues + // @todo Try event/listener similar to Permissions trait + return; + // Skip if already exists if ($this->scopeExists($builder, 'type')) { return;