/**
  * Get all items except for those with the specified keys.
  *
  * @param  mixed  $keys
  * @return static
  */
 public function except($keys)
 {
     $keys = is_array($keys) ? $keys : func_get_args();
     return new static(Arr::except($this->items, $keys));
 }
Example #2
0
 /**
  * Get all of the given array except for a specified array of items.
  *
  * @param  array  $array
  * @param  array|string  $keys
  * @return array
  */
 function array_except($array, $keys)
 {
     return Arr::except($array, $keys);
 }