Implementing SaaS Usage Limits in Laravel
June 23, 2024 — If you’ve ever worked with SaaS models, you’d be familiar with the concept of usage limits. It’s the most important metric for any SaaS product.
A blog on PHP, JavaScript, and more
June 23, 2024 — If you’ve ever worked with SaaS models, you’d be familiar with the concept of usage limits. It’s the most important metric for any SaaS product.
June 19, 2024 — There would be this rare scenario where you would want to fetch the before and after values from a Laravel Collection. For instance, you’re using a collection to display a resource from it and want to go back and forth from that value in that collection.
June 17, 2024 — Any modern application (mobile or web) consists of two main parts: the frontend and the backend. Most of the time, the backend is a REST API that the frontend consumes.
June 14, 2024 — Packages are a great way to extend the functionality of your Laravel application. They can be used to add new features, improve existing functionality, or enhance the performance of your application.
June 13, 2024 — I recently stumbled upon this sleek portfolio website of Maxime Heckel. It’s clean and minimalistic and there are a lot of small details and micro-interactions that make it stand out.
June 12, 2024 — When you create a table in SQLite, by default it’s loosely typed contrary to traditional databases like PostgreSQL or MySQL. Now, allow me to explain what that means.
June 11, 2024 — The use of AGI (Artificial General Intelligence) is indispensable these days. You can access most of the LLMs using the web interface or some applications can be installed on your computer.
June 10, 2024 — There comes a time when you want to log in or authenticate a user in your application manually. For instance, you have a functionality where admins can mimic a user to perform certain actions. Or you may just want to impersonate a user for testing purposes.
June 8, 2024 — Have you ever encountered a situation where you have an area, let’s say a <div>
element, which is a hyperlink and you wanted another hyperlink inside that <div>
element which should also be clickable?
June 6, 2024 — Povilas Korop recently shared an interesting (yet important) tip regarding sane use of Composer if you’re used to working with Composer on your server.