In this tutorial, we will see how to use insert query in laravel. You can easily insert query in laravel.



Example 1:

/**
* The attributes that are mass assignable.
*
* @var array
*/
public function index()
{
    User::insert(
	    ['email' => 'keval@example.com', 'votes' => 0]
	);
    
}



Example 2:

/**
* The attributes that are mass assignable.
*
* @var array
*/
public function index()
{
    DB::table('users')->insert(
	    ['email' => 'keval@example.com', 'votes' => 0]
	);
}



Example 3:

/**
* The attributes that are mass assignable.
*
* @var array
*/
public function index()
{
    DB::table('users')->insert([
	    ['id' => 1, 'email' => 'keval@example.com'],
	    ['id' => 2, 'email' => 'mehul@example.com'],
	]);
}



I hope this example helps you.