Exemplo n.º 1
0
 /**
  * Parses request values, without the token.
  *
  * @param AbstractModel $model
  * @return array
  */
 protected function parseRequestValues(AbstractModel $model)
 {
     $values = array_merge($model->getAttributes(), Input::all());
     return array_except($values, ['_token']);
 }