Laravel Health Check is a very useful package for checking the health of your Laravel & Lumen applications. The purpose of this package is to surface a health-check endpoint on /health which, when hit, returns the status of all the services and dependencies your project relies on, along with the overall health of your system.
This package also adds a /ping endpoint.
Every health check needs to extend the base HealthCheck class and implement a status() method.
If you hit the /health endpoint now, you'll see that there's a my-fancy-redis-check property and it should return OK for the status.