i just doing edit for my migration. and i will refresh with command php artisan migrate:refresh --seed. and I get caution error like
Illuminate\Contracts\Container\BindingResolutionException
Target class [DatabaseSeeder] does not exist.
at vendor\laravel\framework\src\Illuminate\Container\Container.php:1019
1015▕
1016▕ try {
1017▕ $reflector = new ReflectionClass($concrete);
1018▕ } catch (ReflectionException $e) {
➜ 1019▕ throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);
1020▕ }
1021▕
1022▕ // If the type is not instantiable, the developer is attempting to resolve
1023▕ // an abstract type such as an Interface or Abstract Class and there is
1 vendor\laravel\framework\src\Illuminate\Container\Container.php:1017
ReflectionException::("Class "DatabaseSeeder" does not exist")
2 vendor\laravel\framework\src\Illuminate\Container\Container.php:1017
ReflectionClass::__construct("DatabaseSeeder"
can you help me to solve my error?