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

Onion: A Layering Mechanism for PHP Applications

github.com - submitted by Osama Aldemeery

Onion is a lightweight PHP package designed to facilitate layered processing within applications, It provides a clean and efficient way to stack layers of functionality, allowing developers to create flexible and reusable components that can be easily composed and managed. Each layer can perform a specific operation on the data being passed through, making it simple to build complex workflows while maintaining clear separation of concerns.

Read more [github.com]

10 Laravel Project Ideas For Beginners to Advanced Level in 2024

larafast.com - submitted by Sergey

Laravel is one of the most popular PHP frameworks, known for its elegant syntax and powerful features. Whether you are just starting out or looking to enhance your skills, building projects is one of the best ways to learn. In this article, we’ll explore 10 Laravel project ideas that range from beginner to advanced levels, helping you take your skills to the next level in 2024.

Read more [larafast.com]

Supercharge Your Laravel Models with Custom Collections

www.harrisrafto.eu - submitted by Harris Raftopoulos

Custom collections in Laravel allow you to add model-specific methods, making it easier to handle groups of models in a more expressive way. This is especially useful for managing complex data like e-commerce orders, where you can implement methods for filtering, calculating totals, or applying bulk actions, keeping your controllers clean and focused.

Read more [www.harrisrafto.eu]

Optimizing Eloquent: Accessor Caching and Value Objects in Laravel

www.harrisrafto.eu - submitted by Harris Raftopoulos

Laravel's accessor caching with shouldCache() boosts performance by preventing repetitive computations for expensive accessors. Additionally, you can work with complex data like addresses using value objects, and Laravel will auto-sync changes back to the model. This improves code efficiency and maintainability, especially for structured data.

Read more [www.harrisrafto.eu]