Rutas de Aprendizaje Libros Cursos Categorías Anuncios

CRUDs in Livewire 3: From Properties to Forms and the use of wire:model

15-11-2025 - Andrés Cruz

CRUDs in Livewire 3: From Properties to Forms and the use of wire:model

Laravel Are your Livewire components too long? Learn how to handle complex forms with Livewire 3, Form Objects, and professional validation. Optimize your code today.


Create a list or table view in CodeIgniter 4 styled in Bootstrap 4 or 5

24-02-2026 - Andrés Cruz

Create a list or table view in CodeIgniter 4 styled in Bootstrap 4 or 5

CodeIgniter We are going to know how we can create the list of records in a table using CodeIgniter 4, this list will be paginated and it is a fundamental element for our CRUD.


Delete records in CodeIgniter 4

21-02-2026 - Andrés Cruz

Delete records in CodeIgniter 4

CodeIgniter We are going to see how we can delete records from the database using CodeIgniter 4.


The Definitive Guide to Forms and Validation in CodeIgniter 4 (2026)

27-02-2026 - Andrés Cruz

The Definitive Guide to Forms and Validation in CodeIgniter 4 (2026)

CodeIgniter Learn how to process forms in CodeIgniter 4: from managing resource routes and using POST/GET, to creating custom validation rules and handling errors with Bootstrap style. A practical, step-by-step guide.


How to create a REST API (RestFul) in CodeIgniter 4?

22-02-2026 - Andrés Cruz

How to create a REST API (RestFul) in CodeIgniter 4?

CodeIgniter The Rest APIs are a set of methods that can be consumed via GET, POST, PUT, PATCH, DELETE requests and we are going to learn how to create a CRUD RestFul in CodeIgniter 4 using resource type controllers.


What is Django Admin and what is it used for?

06-11-2025 - Andrés Cruz

What is Django Admin and what is it used for?

Django We are going to talk a little about Django Admin as an application to manage the administration of our site that we have by default in any application that we are going to create with Django.


DetailView in Django: How to display a detail view

08-11-2025 - Andrés Cruz

DetailView in Django: How to display a detail view

Django We are going to generate a detail page or template to show the detail of a product in our application in Django, and you will learn how to create routes with parameters and the get_object_or_404 function.


How to create a paginated listing in Django step by step with Bootstrap 5

05-11-2025 - Andrés Cruz

How to create a paginated listing in Django step by step with Bootstrap 5

Django We are going to know how we can create a paginated list of records with Django and Bootstrap 5 using the Paginator class that the framework itself offers us.


How to create a REST API in Django step by step (with Django REST Framework)

14-12-2025 - Andrés Cruz

How to create a REST API in Django step by step (with Django REST Framework)

Django A complete guide to building a REST API with Django and the Django REST Framework (DRF). Discover how to structure your project, use ViewSets, and secure your API with token-based authentication.


How to delete records in Django

07-11-2025 - Andrés Cruz

How to delete records in Django

Django Learn how to delete records in Django, including possible issues, validations, best practices, the soft delete mechanism to avoid accidentally deleting records, deleting multiple records, and more.