Class 'Illuminate\Html\HtmlServiceProvider' not found Laravel 5

前端 未结 12 1997
情话喂你
情话喂你 2020-11-30 04:31

I\'m trying to add the HtmlServiceProvider with Laravel 5.

I keep getting the following error:

FatalErrorException in compiled.php line 6391:

12条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-30 05:14

    Illuminate/HTML package has been deprecated

    Use:laravelcollective/html

    https://stackoverflow.com/a/34991188/3327198

    composer require laravelcollective/html
    

    Add this lines in config/app.php

    in providers group:

    Collective\Html\HtmlServiceProvider::class,
    

    in aliases group:

    'Form' => Collective\Html\FormFacade::class,
    'Html' => Collective\Html\HtmlFacade::class,
    

提交回复
热议问题