How does the Laravel Framework solve known problems in the area of web system development domain? Through its components and architectural structuring. Meet them in this article.
If you are geting the error class not found
when executing the command php artisan migrate:rollback
in a project with the Laravel framework, this article shows how to solve the error and execute rollback.
Migrations
When working with Migations, the migrations of databases in the Laravel, mainly in the initial...
This is the B1 Laravel Course, a beginners level 1 course to whom wants do learn the PHP Laravel framework from the ground.
The course presents the basics of the Laravel framework, an overview of it, and guide the student till a very simple Laravel application that handles a HTML form, do some manipulation with...
Twitter Bootstrap and jQuery are Html/CSS and JavaScript framework and library still in heavy use in the Laravel community to this day.
It’s ease add then with Laravel Mix, but since Laravel v9.2.0 Vite
is now the default bundler and a lot of users have had trouble getting it to work.
In this post we will go over...
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...
There are a few ways to locate php.ini
file by command line on Linux Ubuntu, Linux Mint, and other Linux distributions. Some of the options showed here are also compatible with Windows, specially usin WSL.
What is php.ini
The php.ini
file is the configuration file that is read when PHP starts up. For the server module...
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,...
A session is a way to store information (in variables) to be used across multiple HTTP Requests, to simulate a “state” across pages navigation.
Unlike a cookie, the information is not stored on the end users computer but in the application server.
For security reasons, sessions has a time limit to exist...
Overview of good practices that can be applied as techniques in clean code writing, regardless of programming language or framework.
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...
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...
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...
Where to find open data for statistical analyzes, seed databases with initial data or even create auxiliary tables for certain business areas? The developer community works hard to create repositories that offer data to meet these needs, how about checking and contributing to these repositories.
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,...
This article deals with the Laravel routing not to working in new projects, taking into account a very specific context, when you have new Apache server installations.
Problem script
At some point you will start a new project with the newly installed project with the Laravel Framework, after running the standard...