5

I used the laravelcollective/html package in my Laravel 5 Blade/Bootstrap applications, and now I see that there is no support for Laravel 8. Can you advise something similar compatible with Laravel 8 or this library, OK?

Karl Hill
  • 12,937
  • 5
  • 58
  • 95
Petro Gromovo
  • 1,755
  • 5
  • 33
  • 91

1 Answers1

6

Yes, you can use this package with Laravel 8. Just add the package as you normally would with Composer.

composer require laravelcollective/html

Just make sure, in this case, that in composer.json, it is using version 6.2. Here is confirmation that Laravel 8 is supported.

Karl Hill
  • 12,937
  • 5
  • 58
  • 95