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
.
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
.
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.