为什么laravel不会更改更新数据?

时间:2017-12-30 15:53:38

标签: laravel

我遇到了一些问题,方法更新不会改变我的数据。没有错误,但数据没有改变......有人可以告诉我这是什么问题吗?

https://habrastorage.org/webt/5a/45/78/5a4578c4da9d0166994452.jpeg https://habrastorage.org/webt/5a/45/78/5a4578dc690ea049532766.jpeg

2 个答案:

答案 0 :(得分:2)

您是否创建了类似match的相关模型? 那么这可以为您提供更新功能:

public function update(Request $request, $id)
{
    $match = match::findOrFail($id);
    $match->update($request->all());

    return redirect()->route('match.show', $match->id);
}

答案 1 :(得分:0)

也不要忘记

class Match extends Model {

   protected $fillable = ['name', 'alias'];

}