Eloquent ORM seems like a simple mechanism, but under the hood, there’s a lot of semi-hidden functions and less-known ways to achieve more with it. In this article, I will show you a few tricks.1. Increments and DecrementsInstead of this:$article = Article::find($article_id);
$article->read_count++;
$article->save();
You can do this:$article...