I added the providers and aliases
Collective\Html\HtmlServiceProvider::class,
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
My composer.json looks like this:
"require": {
"laravelcollective/html": "^5.4"
},
View:
{!! Form::open(array('route' => 'persons.store','method'=>'POST')) !!}
// content
{!! Form::close() !!}
I tried composer update and everything and it's still not working. What am I doing wrong??
Thanks
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community