create(); User::create([ 'first_name' => 'Administrador', 'last_name' => '', 'username' => 'admin', 'email' => 'admin@example.com', 'password' => Hash::make('12345678'), 'is_active' => true, 'access_start' => now(), ]); $this->call([ PermissionSeeder::class, RolePermissionSeeder::class ]); } }