Laravel 11: Serialization of 'PDO' is not allowed Exception You may run into this exception in Laravel as soon as you attempt to queue a Mailable class. Let me quickly explain why this may happen and how to avoid it. November 14, 2024
Proper Cart Total Conversion to Cents Without Odd Results When implementing e-commerce logic (especially a cart functionality or payment integration) it is very common to deal with all sorts of money values as integers. While it is tempti… September 25, 2024
Serving Laravel Application Through ngrok The ngrok tool comes very handy when you have to quickly expose your local Laravel environment to the outside world, by obtaining a disposable public URL that points to your local… July 17, 2024
Git: How to Remove a Commit That Has Not Been Pushed to The Remote? The procedure to remove a change that has been already committed but not pushed to the remote is easy and requires just a single git command to be executed in your terminal. February 20, 2024
iOS: How to Fix iPhone Starting to Ring Loud And Then Getting Quieter? When having an incoming call, you iPhone may start to ring normally, but after a brief moment the ring volume goes down to a level that it makes almost impossible to notice it and… December 20, 2022
PhpStorm: How to Disable Annoying Code Vision Hints in 2022.3? Version 2022.3 of PhpStorm comes with a new feature called Code Vision. Check what it does and in case you find it useless (as I do), then follow this article to see how to quickly… December 11, 2022
How to Completely Remove Microsoft AutoUpdate from macOS Ventura? As soon as you install any Microsoft product on macOS, as a bonus you will also get the AutoUpdate app that runs in the background and ensures that all company-related software is… December 01, 2022
How to Fix Broken Git After Upgrading to macOS Ventura? Typically when upgrading macOS to any major version, after the process is finished, we end up with broken git command. This is what happened to me as soon as I performed an upgrade… November 11, 2022
Git: How to Completely Discard Staged and Unstaged Changes? It is not uncommon to work on a proof of concept, where you quickly have to check something and as a result you end up with a lot of changes in your git repository. Changes that yo… November 08, 2022
Docker: PHPUnit with Laravel In the previous article about setting up a LEMP stack in Docker, I did not mention a word about essential part of crafting software and that is - testing. Let's use this stack and… November 01, 2022
PHP: Cookies in Laravel In this brief tutorial I will show you the basics on how to create, return and read cookies created by Laravel. This should cover essential knowledge about cookie functionality tha… October 15, 2022
Docker: Create a Complete Dockerized Laravel Environment with PHP, Nginx, MySQL, Redis and Scheduler Docker gives an incredible flexibility in terms of having a fully-fledged local environment, dedicated for development purposes. In this article I will show you how to establish a… September 24, 2022