TippingCanoe\Imager\Model\Image::scopeUnattached PHP Метод

scopeUnattached() публичный Метод

Modifies the query to only include images without imageables.
public scopeUnattached ( Builder $query ) : Builder
$query Illuminate\Database\Eloquent\Builder
Результат Illuminate\Database\Eloquent\Builder
    public function scopeUnattached(Builder $query)
    {
        return $query->whereNull('imageable_id')->whereNull('imageable_type');
    }