create(); // \App\Models\User::factory()->create([ // 'name' => 'Test User', // 'email' => 'test@example.com', // ]); User::create([ 'name' => 'Bagus Budi Satoto', 'username' => 'bagussatoto', 'email' => 'bagussatoto@gmail.com', 'password' => bcrypt('12345') ]); Monitoring::create([ 'notification' => false, 'temperature' => 0, 'turbidity' => 0, 'ph' => 0, 'jarak' => 0, 'pompa_masuk' => 'Hidup', 'pompa_keluar' => 'Mati', ]); Control::factory(24)->create(); } }