Better Framework auto completion needed

Let us know what you would like to see in the next version of this software

Moderator: kfury77

Forum rules
Please follow these guidelines when posting feature requests. This will help to increase the value of your contribution.
  • Do not create new topics for already requested features. Add your comments to the existing feature request topics instead;
  • Create separate topic for each feature suggestion. Do NOT post a number of non-related feature suggestions in a single topic;
  • Give your topic a meaningful title. Do NOT create topics with meaningless titles, such as "My Suggestion" or "My Problem".
Please note that we DO READ all suggestions, even if a reply is not posted. Thanks!
Post Reply
bennyyo
Posts: 3
Joined: Wed Mar 20, 2019 10:54 pm

Better Framework auto completion needed

Post by bennyyo »

Hello,

I enabled Laravel and typed:

Code: Select all

        $validator = Validator::make($request->all(), [
            'username' => 'required|string|email|max:64',
            'password' => 'required|string|min:6|max:35',
        ]);

With a good auto completetion, upon typing:

Code: Select all

$validator = Validator,
WeBuilder should have added:

Code: Select all

use Illuminate\Support\Facades\Validator;

at the top of the file or at least warned me that the class was missing.

I am not sure to understand how webuilder works when we enable the Laravel framework if the auto completion does not work.

Am I missing something?

Thank you.
Post Reply