简体   繁体   中英

How can I resolve installation error with Laravel LaraAdmin?

I'm trying to setup a fresh install of LaraAdmin http://laraadmin.com

I've been following these instructions: http://laraadmin.com/docs/1.0/installation#install

I receive an error when I get to the step of running

php artisan la:install

The Error received is:

[Symfony\Component\Debug\Exception\FatalThrowableError] Class 'Dwij\Laraadmin\LAProvider' not found

I tried installing 3 times, twice with a local composer installation and once with a global composer installation - both resulting in the same error.

I've also confirmed that Dwij\\Laraadmin\\LAProvider::class is included in the providers section of config/app.php

When I change Dwij\\Laraadmin\\LAProvider::class to Dwij\\Laraadmin\\LAProviderASDF::class in config/app.php - the error becomes:

[Symfony\Component\Debug\Exception\FatalThrowableError] Class 'Dwij\Laraadmin\LAProviderASDF' not found

So it's clear that the added line of code in config/app.php triggers this error.

How can I resolve the class not found error?

将提供程序的此行底部粘贴到config / app.php Dwij \\ Laraadmin \\ LAProvider :: class中

You need to import laraAdmin classes first via composer in the terminal:

composer require "dwij/laraadmin:1.0.40"

After that, you'll be fine running php artisan la:install

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM