NEW defer() in Laravel 11.23

Recently Taylor Otwell (Founder of Laravel) announced a new helper function defer() that means running a piece of code after sending the response. So, defer means “putting something later in the time”, it does. You can read more about it here: Defer function in Laravel or blog by a friend Amit Merchant (Laravel enthusiast) The … Read more

Why Use Laravel Data?

I’ve been using Laravel Data for the last 1 month and I found that it’s a time saver if you don’t want to debug your arrays when passing into functions/methods as parameters. In this blog post, we’ll explore its key features, and why you should consider using it in your next Laravel project. What is … Read more

Introduction to Vue’s Composition API for a Newbie

I’m a newbie to Vue.js, and as I was learning about its amazing features, I thought I should share all of this on my blog. Vue.js is a great and impressive framework. Initially, I found it easier to learn than React.js because it has a predefined structure that is more convenient and does not rely … Read more

Optimizing Vue Performance with Prop Stability

In Vue.js, the component will re-render whenever a child component’s props change. This simple concept leads us to a crucial best practice that can significantly enhance our app’s performance: prop stability. What is Prop Stability? Prop stability means keeping the props passed to a component stable, so they don’t change frequently. This helps to avoid … Read more

Single Responsibility Principle In PHP (SRP)

Since I started programming never cared about SOLID PRINCIPLES that much. Because I wasn’t aware of all these things. I started by watching YouTube videos and maybe because of that it wasn’t mentioned by anyone. But now, when I’m exploring a few open-source projects and learning day by day to improve myself. I’m thinking about … Read more