'Admin', 'email' => 'admin@admin.com', 'password' => Hash::make('password'), 'role' => 'admin', 'venue_id' => 1 // Connect to the first venue ]); // Create regular user User::create([ 'name' => 'User', 'email' => 'user@user.com', 'password' => Hash::make('password'), 'role' => 'user' ]); } }