Code quality tools are designed to help developers and teams maintain healthy codebases, promote consistency, and catch potential problems before they become real issues.

Code quality tools are essential in the development of software, serving as the vigilant sentinaries that ensure your codebase is not only efficient...

How to Generate a Random String with PHP

From time to time in software development, we encounter the need to generate random strings for passwords, tokens, or other purposes. In this article, we’ll explore how to generate random strings in PHP, looking at various methods and understanding the security and complexity levels of each approach.

What Is a...

String interpolation is one of those features in PHP that make the language both powerful and easy to use. It allows you to embed variables directly within strings, making string manipulation more intuitive and readable.

You’ll understand better, but just to clarify, in PHP, string interpolation only works with...

Filament PHP

This is the section dedicated to exploring and unpacking the compelling world of Filament Laravel PHP.

Filament is the elegant TALLkit for Laravel artisans.

If you’re not familiar with Filament PHP, it’s a powerful open-source toolkit developed for Laravel, designed to make the administration of your...

featured-404-livewire-error-filament-login.webp

Often, after installing the Filament Admin Panel package in a fresh Laravel project, you may run into a recurring problem. The login page keeps reloading without any error, and a question mark “?” gets appended to the URL each time.

This issue is likely to occur when you attempt to access the login page via...

Laravel's CreateOrUpdate Upsert Technique: A Comprehensive Guide with Use Cases

Laravel offers a variety of methods for interacting with databases. Among these, the createOrUpdate method, also known as the upsert technique, is a powerful tool that allows developers to streamline their code and improve efficiency. This article provides an in-depth look at the createOrUpdate method, its usage, and...

PHP Composer, error: Invalid version string

Recently working with PHP Composer on a project that is based on the Laravel framework, I came across the error: Invalid version string. More precisely when performing the attempt to install a Laravel package that allows me to use models with the logical strategy of Eloquent to access MongoDB databases.

The package...

featured-wordpress.png

Since WordPress is a CMS (Content Management System) with the possibility of using external themes and plugins, it is common for some errors to happen after the installation, even for testing, of a new extension of this nature on your site.

It is also susceptible to some errors when a PHP or Apache or Nginx version...

featured-private.jpeg

Private and protected methods should not be accessed outside the permissible scope of class or subclasses. But there are some situations where this is necessary, for me in some contexts of automated testing (unit or integration), or in others where I am implementing a feature and want to perform punctual executions to...

PHP Dates: Fetching the Previous Day or Month pr Year

Get the Previous Dates in PHP

Dates and timestamps are crucial in many software systems and web applications. They allow us to track events, analyze patterns, and provide users with pertinent information based on time. In this post we’ll explore how to handle dates in PHP, specifically on how to get the date for...

featured-copyright.webp

Adding the copyright information with the current year in the footer of websites and blogs is important to convey to your audience the information that the content they find is “alive” and updated on this site. It is also interesting to add the year of the beginning of the site, the more information about...

featured-php-timeout.webp

When executing PHP scripts called by web browsers, it is important to monitor their execution time to prevent timeouts from occurring.

In this guide, we will explore different methods to increase the PHP max execution time, ensuring your scripts have enough time to complete their tasks without affecting server...

featured-laravel-logo.png

PHP Laravel is an application framework based on a Open Source Code, aimed at developing web systems with expressive and elegant syntax. It is developed in PHP, being easily adopted and learning.

Its web structure provides an infrastructure and starting point...