If you're trying to add a column (like your comment says) you need to run a migration: https://laravel.com/docs/5.3/migrations
If you're trying to change the isSomething property on each of your $user objects, make sure you call save after your foreach.
$users->save();
That save all the changes you made to isSomething to your database.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community