localhost:8000继续加载,没有任何错误或正确的输出

I am only learning laravel, and i am unable to load my laravel homepage on localhost:8000, from i long time it was going fine, but today i updated my composer and updated entry of : config/app.php in aliases::

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

in providers::

Collective\Html\HtmlServiceProvider::class,

and composer.jason file: in require::

"laravelcollective/html": "~5.0" 

now, localhost:8000 is causing errors. It is not showing any error but it just continues to load.

I think this issue is with clearing cache. You can run following command to clear cache:

php artisan config:cache
php artisan config:clear
php artisan cache:clear

Hope this answer will help you well!

create .env file(copy from .env.example) and set

APP_DEBUG=true
APP_LOG_LEVEL=debug