Laravel 5.2: Undefined class form
I have a problem with using Form command in a Composer + Laravel 5.2 project with PhpStorm as IDE. I'm using Laravel Collective 5.2. in my composer.json , so it should work. (sadly, it's not which is the reason I'm here...) The providers: Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class, Collective\Html\HtmlServiceProvider::class, my aliases. 'Form' => Collective\Html\FormFacade::class, 'Html' => Collective\Html\HtmlFacade::class, The problem: It's returned as a undefined class when I'm using {!! Form::close() !!} or any form command in my blade.php . Did I misunderstood something