'Admin', 'email' => 'admin@iot.com', 'password' => Hash::make('admin123'), ]); // Create test user User::create([ 'name' => 'Test User', 'email' => 'test@iot.com', 'password' => Hash::make('test123'), ]); // Create user sesuai dengan format native (untuk testing) User::create([ 'name' => 'IoT User', 'email' => 'user@example.com', 'password' => Hash::make('password'), ]); // Create additional demo users User::create([ 'name' => 'John Doe', 'email' => 'john@iot.com', 'password' => Hash::make('john123'), ]); User::create([ 'name' => 'Jane Smith', 'email' => 'jane@iot.com', 'password' => Hash::make('jane123'), ]); } }