Commit d8695494 authored by Alfonso Rafael Solis Rangel's avatar Alfonso Rafael Solis Rangel
Browse files

Añadimos todas las semillas

parent 3687e069
Loading
Loading
Loading
Loading
+6 −10
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@

namespace Database\Seeders;

use App\Models\User;
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;

@@ -13,15 +12,12 @@ class DatabaseSeeder extends Seeder
     */
    public function run(): void
    {
        // User::factory(10)->create();
        $this->call([CaracteristicaSeeder::class]);
        $this->call([CargoSeeder::class]);
        $this->call([DependenciaSeeder::class]);
        $this->call([GrupoSeeder::class]);
        $this->call([ProfesionSeeder::class]);
        $this->call([UserSeeder::class]);

        $this->call([
            UserSeeder::class
        ]);

        /*User::factory()->create([
            'name' => 'Test User',
            'email' => 'test@example.com',
        ]);*/
    }
}