Support the ongoing development of Laravel.io →
Database Forms Laravel.io
Last updated 2 years ago.
0

Yeah, you can use this for get all the rows of the table as an array object

$users = DB::table('users')->select('id', 'email')->get(); return View::make('some.view', compact('users')) ;

Then on the view @foreach($users as $user) {{ Form::checkbox('check[] ', $user->id) }}
@endforeach

0

Sign in to participate in this thread!

Eventy

Your banner here too?

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.

© 2024 Laravel.io - All rights reserved.