密码路由器在Laravel 5.6中显示偏移错误

时间:2018-07-25 15:24:06

标签: php laravel

重置密码路由显示Offest错误。

显示错误的路由:/ password / reset

  

ErrorException(E_NOTICE)未定义的偏移量:0

     

供应商\ laravel \ framework \ src \ Illuminate \ Support \ Collection.php

/**
 * Get an item at a given offset.
 *
 * @param  mixed  $key
 * @return mixed
 */
public function offsetGet($key)
{
    return $this->items[$key];
}

/**
 * Set the item at a given offset.
 *
 * @param  mixed  $key
 * @param  mixed  $value
 * @return void
 */
public function offsetSet($key, $value)
{
    if (is_null($key)) {
        $this->items[] = $value;
    } else {
        $this->items[$key] = $value;

有解决方案吗?

0 个答案:

没有答案