In this section you'll find links submitted by others.

Did you write or stumbled across a blog post, tutorial or video that might be interesting for others?

To be able to submit a link you need to log in first.

Log in

Events in Laravel

rocketee.rs - submitted by Mark van Eijk

Out of the box Laravel has a wide variety of events that are fired inside your application by default. These events can help you with hooking into functionality and listen for when things are happening. This makes Laravel easily extensible without much effort.

Read more [rocketee.rs]

Best Practices for Using PHP Enumerations

jeffochoa.me - submitted by Jeff

Although PHP Enumerations are meant to provide an easy and elegant solution to work with a predefined set of values, these classes are often misused, resulting in a lack of consistency due to the introduction of all sorts of methods that increase their complexity. In this article, we are going to go through some practices (both good and bad) with the goal of clarifying the understanding of these types of objects to help you build a more resilient and consistent codebase.

Read more [jeffochoa.me]