PHP Generators - Practical Example
Introduction Generators in PHP enable the construction of iterators without the necessity of creating the whole array. This significantly aids in …
ReadI’m Ahmed Ammar, but you can also call me Ahmed Ash. I’ve been using Laravel since 2014 to build various projects, and I’m still actively working with it. I’m really passionate about Laravel and its surrounding tools. I also love contributing to open-source projects—you can see some of my work here . Join me as we dig deep into the world of Laravel. Through my articles, I aim to share insights and tips that could make your own journey with Laravel easier and more rewarding.
Introduction Generators in PHP enable the construction of iterators without the necessity of creating the whole array. This significantly aids in …
ReadIntroduction The simples way to use where is just to statically call it on your model as Model::where('name', 'Ahmed')->first() Laravel Query …
ReadThe Builder pattern is a widely recognized pattern, invariably mentioned in any design patterns book or article. It falls under the category of …
ReadThe Pending Object pattern plays a key role in Laravel, as it is utilized almost in all its aspects. It offers an exceptional developer experience …
ReadIn Laravel, validating forms is key to maintaining the safety and accuracy of user data. The FormRequest component simplifies this by keeping the …
ReadI’ve always been interested in real-time technologies, especially when dealing with high traffic and complex issues. I once encountered a …
ReadHey! So Livewire 3 and Volt are out. I’ve been playing around with them and they’re pretty cool. My favorite part? Definitely the long …
ReadIn your Laravel projects, how do you go about setting up routes for a particular resource? Do you do it in the following manner? …
ReadWe’ve previously explored the Facade pattern and its functioning within Laravel. However, Laravel doesn’t simply offer a single way to …
ReadBackground tasks component is essential in most backend systems. Regardless of what you’re creating, there’s almost always a need for a …
Read