How does one execute an operation with Slim/Illuminate to update mysql database row and add +1 or -1
$user->update(['points' => +1]);
How does one execute an operation with Slim/Illuminate to update mysql database row and add +1 or -1
$user->update(['points' => +1]);
Try this:
$user->increment( 'points' );
$user->decrement( 'points' );