Support the ongoing development of Laravel.io →
posted 6 years ago

how to inser multiple rows using checkbox in laravel?

Last updated 3 years ago.
0

Hi, I'd solve it this way. Since multiple checkboxes are passed to the server as an array, what I do is to loop through the array e.g

$colors = $request->colors
foreach ($colors as $color){
   Color::create($color);
}

And that should be it.

0

Sign in to participate in this thread!

PHPverse

Your banner here too?

Batirbek batirbek Joined 11 Feb 2019

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.