Example #1
0
 /**
  * Get all of the input except for a specified array of items.
  *
  * @param  array  $keys
  * @return array
  */
 public function except($keys)
 {
     $keys = Arrays::is($keys) ? $keys : func_get_args();
     $results = $this->all();
     Arrays::forget($results, $keys);
     return $results;
 }