laravel

How to configure Laravel to use multiple databases in your Project

How to configure Laravel to use multiple databases in your Project

Normally a software development project involves the use of a Database for storing data in a structured way. For projects…

April 5 2024

What are design patterns: why use them, classification, pros and cons

In software engineering, design patterns are optimal solutions to problems that commonly occur in software design. I'm like…

March 26 2024

Learn how to do tests in Laravel with simple examples, using PHPUnit and PEST

When it comes to automated tests or unit tests, in any programming language, there are two opposing opinions: Loss…

October 18, 2023

Laravel Web Security: What is Cross-Site Request Forgery (CSRF) ?

In this Laravel tutorial we talk about Web Security and how to protect a web application from Cross-Site Request Forgery or…

April 26 2023

What are sessions in Laravel, configuration and use with examples

Laravel sessions allow you to store information, and exchange it between requests in your web application. I am a way…

April 17 2023

What is Laravel Eloquent, how to use it, tutorial with examples

The Laravel PHP framework includes Eloquent Object Relational Mapper (ORM), which provides an extremely simple way to communicate with a…

April 10 2023

What are Laravel components and how to use them

Laravel components are an advanced feature, which is added by the seventh version of laravel. In this article we will go to…

April 3 2023

Laravel localization step-by-step guide, tutorial with examples

How to localize a Laravel project, how to develop a project in Laravel and make it usable in multiple languages.…

March 27 2023

Laravel Database Seeder

Laravel introduces seeders for creating test data, useful for verifying the project, with an admin user and…

March 20 2023

Vue and Laravel: create a Single Page Application

Laravel is one of the most popular PHP frameworks used by developers, let's see today how to make a Single Page Application with…

March 13 2023

Creating a CRUD App with Laravel and Vue.js

In this tutorial we see together how to write the code of an example CRUD App, with Laravel and Vue.js. There…

February 27 2023

How to use Laravel with Vue.js 3

Vue.js is one of the most used JavaScript framevorks for creating web interfaces and single page applications, along with…

February 20 2023

Laravel: What are laravel Controllers

In the MVC framework, the letter “C” stands for Controllers, and in this article we will see how to use Controllers in Laravel.…

February 16 2023

Laravel middleware how it works

Laravel middleware is an intermediate application layer that intervenes between the user's request and the application's response. This…

February 13 2023

Laravel namespaces: what they are and how they work

Namespaces in Laravel are definited as a class of elements, where each element has a name other than…

February 6 2023

Laravel: What are laravel Views

In the MVC framework, the letter "V" stands for Views, and in this article we will see how to use views in Laravel. Separate the application logic…

January 30 2023

Laravel: introduction to laravel routing

Routing in Laravel allows users to route all application requests to the appropriate controller. Most of the routes…

January 23 2023

What is Laravel, how it works and basic architecture for creating WEB applications

Laravel is a PHP-based web framework for building high-end web applications, using its…

January 16 2023

What is a Framework in Software Engineering, defidefinition and types of frameworks

By developing software, program code for generating software engineering applications, there is no need to start from scratch ...

October 15, 2022