Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why are Form and HTML helpers deprecated in Laravel 5.x?

Why are the Form and HTML helpers deprecated since Laravel 5? I know I could use something like laravelcollective/html packages. But I was just wondering why Laravel stopped using/devolving the helpers.

like image 291
Dees Oomens Avatar asked Feb 29 '16 09:02

Dees Oomens


2 Answers

The answer is simple.

Taylor Otwell decided to remove Form and Html from core components because it's something that should be maintained by the community through packages like https://github.com/LaravelCollective/html. Few other components were removed to keep the framework slim. Not everyone uses Form and HTML , I personally prefer pure HTML.

My Opinion

One of my opinions on this is the issue of performance, If you check Form and HTML classes you will see how forms are actually generated, which involves looping with foreach and other script just to generate simple form which simply doesn't happen when you use your plain HTML in your blade.

Laravel Form & HTML components also have limitations in terms of full customization but when you use plain HTML in your blade you can freely customize the form in anyway you like and any front-end developer can understand it without learning Laravel or Blade.

I actually think Laravel Form & HTML are for lazy developers, my opinion :)

You can do without Form & Html builders completely or you can use available packages

like image 171
Emeka Mbah Avatar answered Sep 29 '22 19:09

Emeka Mbah


They say Laravel developers removed it because they want to keep framework simple. Not all devs use all components, so they can just add modules manually.

A lot of developers were shocked by this decision, because Laravel Collective is really useful and great part of Laravel. I really hope Laravel Collective will be core part of Laravel framework again.

like image 42
Alexey Mezenin Avatar answered Sep 29 '22 19:09

Alexey Mezenin