LRLoquero, Rodney I.inrodny.hashnode.dev·Jun 24, 2025 · 4 min readLaravel Flow ReviewUnderstanding the Laravel Application Flow: A Review Strategy When you build a Laravel application, you generally think about things in a logical sequence, often starting from the data and ending with what the user sees. Phase 1: Database & Data Stru...00
LRLoquero, Rodney I.inlaravel-simple-task-manager.hashnode.dev·Jun 24, 2025 · 8 min readLaravel Simple Task ManagerStep 1: Create a New Laravel Project First, let's create a fresh Laravel project. Open your terminal or command prompt. Navigate to the directory where you want to store your projects. Run the following command: laravel new TaskManager When pr...00
LRLoquero, Rodney I.inrodny.hashnode.dev·Oct 17, 2024 · 2 min readHTTP Status Codes1xx (Informational) These codes indicate that the request was received and is being processed, but there is no final response yet. 100 Continue: Indicates that the initial part of a request has been received and the client can continue sending the r...00
LRLoquero, Rodney I.inrodny.hashnode.dev·Oct 17, 2024 · 2 min readHTTP MethodsCommon HTTP Methods in RESTful APIs GET Purpose Used to retrieve data from the server without altering it.Use Case: Ideal for fetching resources such as a list of products, details about a specific user, or fetching search results.Example: Request: ...00
LRLoquero, Rodney I.inrodny.hashnode.dev·Oct 17, 2024 · 4 min readRest APIWhat is REST API? REST (Representational State Transfer) API is an architectural style for designing networked applications, primarily web services. It allows communication between a client and a server over HTTP (or HTTPS), enabling access and manip...00