Skip to main content
Category

Laravel Framework

Laravel for Beginners: Routing and Controllers (Chapter 3)

By Laravel Framework No Comments

In this article, we’ll be exploring the concept of routing and controllers in Laravel. Routing is the process of mapping URLs to specific actions, and controllers are the classes that handle these actions. Understanding routing and controllers is essential for building robust and scalable applications in Laravel. Objectives The objectives of this article are to: Routing in Laravel What is…

Read More

Laravel for Beginners: Setting up the development environment (Chapter 2)

By Laravel Framework No Comments

I. Introduction Having a properly configured development environment is crucial for building and testing Laravel applications. In this article, we will cover the steps to set up the Laravel development environment on your local machine. The steps to set up the Laravel development environment include installing PHP, a web server, and a database, as well as installing XAMPP, Laravel, and…

Read More

Laravel for Beginners: Introduction to Laravel framework (Chapter 1)

By Laravel Framework No Comments

I. Introduction Laravel is a free, open-source PHP web framework used for web application development. It follows the Model-View-Controller (MVC) architectural pattern and provides an elegant and simple syntax for common tasks such as routing, authentication, and database management. Laravel was created by Taylor Otwell in 2011 as an alternative to existing PHP frameworks. Since its initial release, Laravel has…

Read More

Áp dụng Builder (Manager) Pattern trong Laravel để quản lý bên thứ 3 cung cấp dịch vụ

By Laravel Framework No Comments

Bài toán đặt ra Trong rất nhiều ứng dụng chúng ta sẽ phải sử dụng dịch vụ của bên thứ 3. Ở đây tôi ví dụ dịch vụ gửi OTP qua SMS chẳng hạn. Để đảm bảo hệ thống chạy ngon lành và không phụ thuộc vào sự cố của nhà cung cấp, chúng ta nên sử dụng ít nhất…

Read More