Posts by:

#1 GUIDE TO DRUPAL, WORDPRESS, CSS AND CUSTOM CODING | BEGINNER TO PRO

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...

PHP intl-Extension Error for Laravel on Windows

- - Tech Stuff

Fixing the “intl” PHP Extension Error for Laravel on Windows When spinning up a fresh Laravel project on a local Windows and Apache environment, you might hit a frustrating runtime blocker: RuntimeExceptionvendor\laravel\framework\src\Illuminate\Support\Number.php:476 The “intl” PHP extension is required to use the [format] method. Even if you have uncommented the extension...

Getting Started with Vercel

- - DevTools, Tech Stuff

A Beginner’s Guide to Hosting and Testing Projects with Vercel If you are stepping into the world of modern web design and front-end development, you have likely heard the name Vercel floating around. At its core, Vercel is a cloud platform specifically built to optimize the deployment experience for front-end...

Master Your PEP Exams with PrepKids

- - Uncategorized

Master Your PEP Exams with PrepKids Are you feeling the pressure of upcoming PEP exams? You aren’t alone! Parents and students alike know that exam season can feel overwhelming. But what if studying could feel a little more like a game and a lot less like a chore? Introducing PrepKids.com,...

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:...