for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Goopil\RestFilter\Contracts;
use Goopil\RestFilter\Scopes\FullScopes;
/**
* Trait Queryable.
*
* @mixin \Illuminate\Database\Eloquent\Model
*/
trait Queryable
{
* boot method.
public static function bootQueryable()
static::addGlobalScope(new FullScopes());
}