I have two rows, one for moods, and count. If user submit the same input i.e. "happy" then i want to +1 count, but not to append another database row. i have this, but it wont work
foreach($splits as $split){
try {
$mood = Mood::findOrFail($split);
$mood->count += 1;
$mood->save();
} catch (ModelNotFoundException $e) {
Mood::create(array(
'type' => $split,
'count' => 1,
));
}
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community