Laravel - Database Basics and Migrations
Given this seeder code snippet, what will be the result after running
php artisan db:seed --class=UserSeeder?
public function run() {
DB::table('users')->insert([
['name' => 'Alice', 'email' => 'alice@example.com'],
['name' => 'Bob', 'email' => 'bob@example.com']
]);
}