Laravel Array Helper Function: array_forget
forget(&$array, $keys) The forget helper method removes items from the given $array . The specified keys are express in dot notation.This function affects the original $array . Assuming an array is defined as follows: 1 <?php 2 3 use Illuminate \...