PHP
Maximizing response caching in Laravel
Response caching is like a progressive enhancement. It will make your app faster in some ways, and some cases, but your app must work perfectly well without it. Read More
Response caching is like a progressive enhancement. It will make your app faster in some ways, and some cases, but your app must work perfectly well without it. Read More
[AdSense-A]
Here's a recording of the Laravel Worldwide Meetup #7.
Miguel Piedrafita talked about the various options of signing in with Laravel. After that, Caneco shared some of the secrets behind the Laracon Online website.
(more…)Security precautions Composer already has, and what you can do to improve them further. Read More
When you are working with a one-to-many relationship, it is sometimes the case that a particular instance on the “many” side of the relationship is flagged as unique and important to your system in some Read more…
Strings are useful for holding data that can be represented in text form. Some of the most-used operations on strings are to check their length, to build and concatenate them using the + and += Read more…
It looks like PHP will get fibers soon with PHP 8.1! Thatâs awesome! Or is it? Read More
As a predominantly Laravel developer that is accustomed to Laravel Mix, I wanted to see how to get Tailwind’s JIT compiler working with Laravel Mix, and was pleasantly surprised that it was quite simple and Read more…
If you’re running your queue workers on a server with limited resources, or a server that’s also used to serve HTTP requests and do other tasks, it’s important to ration the resource used by those Read more…
When distributing console commands in a package or within an application, making sure data is in the correct format can be important. Let’s build a make:user command that takes advantage of Laravel’s validation helpers. Read Read more…