jannnik
jannnik

Reputation: 102

Laravel 5.x Forms best practice

as described at the Laravel documentation, the official form builder is not supported anymore since Laravel 5.0. I need to build a multi page form in my Laravel project. What is the best practice how to do that? Because it's a new project, I don't think it's best practice to use the class from Laravel Collective.

Upvotes: 2

Views: 1165

Answers (1)

Mahmoud Tantawy
Mahmoud Tantawy

Reputation: 713

Laravel doesn't come with all packages that are available in the world, doesn't mean you shouldn't freely use whatever package that you need and does the job.

So, unless you are ready to re-invent the wheel and re-implement the forms package then use the already existing and well tested package from Laravel Collective.

Upvotes: 4

Related Questions