PHP articles

Brought to you by Honeybadger—simple application monitoring that helps developers move fast and fix things.

Caching in Laravel with Redis: a complete guide

One of the easiest ways to speed up your web app is to cache slow-to-compute data, preventing an application from having to make excessive expensive database calls. Read this article to discover how to use Redis to cache DB results in a Laravel App.

A guide to PHP attributes

Attributes are a powerful feature in PHP that can be used to add structured, machine-readable metadata to annotate your code. In this article, we'll look at what attributes are, how to use them, and how to create your own.