Trait 'Illuminate \ Console \ AppNamespaceDetectorTrait' not found Laravel 5.3 to 5.4

0

I used adminlte 3 with laravel 5.3 update laravel to 5.4 and I get this error when trying to enter the system:

Trait 'Illuminate\Console\AppNamespaceDetectorTrait' not found .

    
asked by Pablo Contreras 23.06.2017 в 06:19
source

1 answer

0

Modify file vendor\acacha\admin-lte-template-laravel\src\Providers\AdminLTETemplateServiceProvider.php

Inside the:

1 .- Replace line (6) use Illuminate\Console\AppNamespaceDetectorTrait; with use Illuminate\Console\DetectsApplicationNamespace; .

2 .- Replace line (14) use AppNamespaceDetectorTrait; with use DetectsApplicationNamespace; .

And ready, everything will work correctly as before.

    
answered by 23.06.2017 / 06:19
source