Use the insert()method for volume insertion. First create an array with this structure:
$data = [
['name' => 'John', 'age' => 25],
['name' => 'Maria', 'age' => 31],
['name' => 'Julia', 'age' => 55],
];
Then paste the data using the Eloquent model:
Model::insert($data);
Or using the query builder:
DB::table('table_name')->insert($data);