Skip to main content
Category:

Question:
How to Increment and decrement value of a given column in Laravel 7 ?

Solution:

if you want to increment or decrement some DB column in some table, just use increment() or decrement()  functions. Oh, and you can increment or decrement  not only by 1, but also by some number, like 5.

Examples:

Post::find(1)->increment('votes');

Post::find(1)->increment('votes', 5);

Post::find(1)->decrement('votes');

Post::find(1)->decrement('votes', 5);

 

Riadh Rahmi

Senior Web Developer PHP/Drupal & Laravel

I am a senior web developer, I have experience in planning and developing large scale dynamic web solutions especially in Drupal & Laravel.

Web Posts

Search

Page Facebook