laravel-mix-featured.webp

I had a lot of problems with using laravel/ui to install and then use the last updated versions of packages Twitter Bootstrap, jQuery and Popper.js. Since, for example, the Bootstrap version laravel ui installs is outdated, for example on Laravel 8 it is only version 4.6, and the newest version is, as of today: 5.2.2...

featured-laravel-session-lifetime.webp

A session is a way to store information (in variables) to be used across multiple HTTP Requests, to simulate a “state” across pages navigation.

Laravel ships with a variety of session backends managers that are accessed through an expressive, unified API. Support for popular backends such as Memcached,...

As with any essential software project back up database data, as well as restore these backups, your MySQL or Mariadb databases, as well as PostgreSQL.

When you are working with the developmental environment of your Laravel PHP projects in Laradock Docker containers, it is important to understand how the directories...

If you want to set up the Best environment for software development in Linux Mint (or Ubuntu and other Debian based distros), this is the right article for this.

Every software developer organizes their development environment for programming using a mix of technologies and tools to use to program, improve productivity...

featured-class-numberformatter-not-found.webp

If you have ever come across “NumberFormatter Class Not Found” error when installing a PHP Laravel application on a Windows or Linux server, this article will help you resolve this issue.

Let’s explore in this article the cause for the error class "numberformatter" not found in PHP Laravel,...

When using Laradock, by accessing the container Workspace I have sometimes received the following error when trying to execute PHP composer:

COMPOSER_AUTH" does not match the expected JSON schema, this may result in errors and should be resolved:  
   - Boolean value found, but an object is required  

According to...

featured-image-upload-scaled.webp

After validating data entry forms, which return to the user with information from the errors that should be corrected, the best practice is to fill the fields with the last (old) values, but is not possible to apply this techinique to upload field files, both in Laravel PHP and in any other language.

This is a browse...

featured-people-with-databases.webp

The Laravel database connection using Laradock is very straightforward and intuitive with MySQL or Mariadb database servers in a Laravel PHP project when using Laradock Project Docker containers.

But some tips and reminders are important to prevent you from wasting time when preparing your environment of developing a...

featured-laradock-laravel-docker.webp

Learn now how to install and configure Laradock, which is, as presented in the Introductory Article, a project for quick and simple configuration of PHP Web Systems Development Environments using Docker.

In this tutorial article, we will see more in detail how to install and configure a Laradock environment to work by...

featured-laradock.webp

Laradock is a complete web development environment for Docker, which was born to meet the development of Laravel systems and currently provides containers for various situations for PHP development.

It supports a variety of common services, all pre-configured to provide a PHP development environment,...

featured-install.webp

If you work with the PHP Framework Laravel, you know that installing your application in a default directory of a VPS account or a shared server, without changes, will force you to run the application leaving the root directory as it will need to access it by the subdirectory /public. For example:...