The many uses of "..." ellipsis operator in PHP
September 21, 2023 — With the evolution of PHP to its modern version, the one operator that has been used thoroughly across various places is the ellipsis operator (...
).
A blog on PHP, JavaScript, and more
September 21, 2023 — With the evolution of PHP to its modern version, the one operator that has been used thoroughly across various places is the ellipsis operator (...
).
September 21, 2023 — A few days ago I discussed many ways to tail logs in Laravel. And it hasn’t been long since I wrote that article, a new package called Pail has popped up on my radar which is also a Laravel package for tailing logs.
September 20, 2023 — If you’re a journalist or a writer, you might be familiar with the AP Stylebook commonly known as “AP-style”. It’s a writing style guide for journalists and it’s widely used in the United States.
September 17, 2023 — When you’re debugging a web application, you might want to override the response of a fetch
or XMLHttpRequest
request to test your application’s behavior in certain scenarios.
September 15, 2023 — There are a lot of tools like ngrok that let you expose your local server to the internet. But did you know VS Code has just got this feature in the form of port forwarding so that you don’t need to install any third-party tool to do this anymore?
September 14, 2023 — Environment variables are tricky little things that we use in our Laravel applications to store sensitive information such as API keys, database credentials, and so on. And there are two ways to access them in your Laravel application.
September 14, 2023 — Laravel has all kinds of Artisan commands to let you generate boilerplate code for your application. For instance, you can generate a controller, model, migration, and so on using the Artisan command. But, there was no command to generate views in Laravel until now.
September 13, 2023 — There are some things that you never know you need until someone tells you about them. For instance, Christoph Rumpel recently shared a handy little setting in PhpStorm called Camel Humps which allows you to navigate through the camel-cased class/variable names using the arrow keys.
September 12, 2023 — Jeffery Way recently tweeted about how he wants a php artisan tail
command to see the real-time application logs in Laravel. And the replies to this tweet were quite interesting. People have shared their ways of tailing the Laravel log. So, I thought to compile them all in one place.
September 11, 2023 — Uploading images to your website is a common task. But, it’s also important to make sure that the images are optimized for the web. This includes resizing, cropping, compressing the images, and so on.