Support the ongoing development of Laravel.io →
posted 5 years ago
Last updated 2 years ago.
0

Good day Rajaa

try to install the Laravel Collective Package using

"composer require laravelcollective/html"

also add your new provider to the providers array of config/app.php

'providers' => [ // ... Collective\Html\HtmlServiceProvider::class, // ... ],

add two class aliases to the aliases array of config/app.php 'aliases' => [ // ... 'Form' => Collective\Html\FormFacade::class, 'Html' => Collective\Html\HtmlFacade::class, // ... ],

for more information you can check: https://laravelcollective.com/docs/5.1/html#installation

I hope this helps.

0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.