在DatabaseSeeder中
Item
在BannersTableSeeder中
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
$this->call(UsersTableSeeder::class);
$this->call(CategoriesTableSeeder::class);
$this->call(ProductsTableSeeder::class);
$this->call(BannersTableSeeder::class);
}
}
并且终端出现“ ReflectionException:Classs BannersTableSeeder不存在”
我仔细检查了班级名称,但这不是问题