Category "Laravel"

Laravel 13 Passwordless Authentication

- - Laravel

Laravel 13 Passkeys introduce native WebAuthn support, making passwordless authentication easier, more secure, and simpler to implement. Instead of relying solely on passwords, developers can now offer biometric sign-ins and security key authentication with significantly less effort. Laravel 13 takes a significant step toward a passwordless future by introducing native...

Setting up WSL2 + Ubuntu for PHP & Laravel Development

- - Laravel

Setting up Ubuntu/Linux in Windows for Development Developing on Windows used to mean dealing with constant environment discrepancies. Fortunately, the Windows Subsystem for Linux (WSL2) paired with Ubuntu completely changes the game. Furthermore, it gives you a native Linux environment without ever leaving Windows. Here is how you can get...

Block route by IP address in Laravel

- - Laravel

In Laravel, using middleware, you can block access to a specific route by IP address. Middleware allows you to filter HTTP requests entering your application. Here’s how you can do it step by step: Step 1: Create a Middleware Run the following Artisan command to create a new middleware: php...

Laravel Installation Guide for AlmaLinux

- - Laravel

Step-by-Step Guide to Install Laravel, PHP, Apache, and MySQL on AlmaLinux Step 1: Update System Packages Update your system packages: sudo dnf update -y Step 2: Install PHP Enable the EPEL and Remi repositories: sudo dnf install epel-release -y sudo dnf install https://rpms.remirepo.net/enterprise/remi-release-9.rpm -y Enable the Remi PHP 8.x repository:...

Introduction to Laravel

- - Laravel

Laravel is a popular open-source PHP web framework designed for building modern, robust, and scalable web applications. It follows the Model-View-Controller (MVC) architectural pattern, which separates the application logic, user interface, and data layers. Laravel is known for its elegant syntax, developer-friendly features, and extensive ecosystem, making it a top...