Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created August 1, 2021 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/8164db06e82a05ca825ead6c12f7b8e5 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/8164db06e82a05ca825ead6c12f7b8e5 to your computer and use it in GitHub Desktop.
<?php
public function scopeNotBanned(\Illuminate\Database\Eloquent\Builder $builder) {
return $builder->whereBanned(false);
}
<?php
User::notBanned()->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment