Plural strings based on the count in Laravel

1 · Amit Merchant · June 26, 2022, 7:09 a.m.
Working with strings can prove to be tricky in some scenarios. For instance, when building a cart for an eCommerce website, you may need to show the string “item” in singular/plural form based on how many items are there in the cart. You may resort to using it like so and be done with it. ⟶ “item(s)” But luckily, if you’re working with Laravel, doing something like this is pretty easy. So, if we want to display the string “item” in singular/plural based on the item count, here’s how we can do it...