I\'m trying to make a notification system with laravel. My idea was to get data and update instantly the \"is_delivered\" flag.
This is the code:
Model:
You can run an update on the whole collection:
DB::table('table_name')->whereIn('id', $collection->modelKeys())->update(['is_delivered' => 1]);