Laravel 5.2 是否已停止使用 Form::model 之类的表单模型绑定和助手?

Has Laravel 5.2 discontinued form model binding and helpers like Form::model?

我在 Laravel 5.2 文档上找不到任何官方帮助,在我使用 Laravel 5.2 的应用程序中使用 Form::model 和 Form::open 的唯一方法似乎是使用Laravel集体。

关于 Laravel 最新版本中表单模型绑定的当前最佳实践有什么想法吗?

从 5.0 开始 Laravel Collection HTML & Forms became separated package which should be installed with composer.

If you're using Form or HTML helpers, you will see an error stating class 'Form' not found or class 'Html' not found. The Form and HTML helpers have been deprecated in Laravel 5.0; however, there are community-driven replacements such as those maintained by the Laravel Collective.

https://laravel.com/docs/master/upgrade#upgrade-5.0