Tag: Laravel

Learn about Laravel's powerful features, including routing, authentication, migrations, Eloquent ORM, and API development.

Implementing Queues in Laravel for Notifications

Implementing Queues in Laravel for Notifications

Laravel queues emails via notifications: Add ShouldQueue to notification class. Dispatch with $user->notify(), run queue:work. No job files—async sends, delays, retries. Simplify code, boost app speed. #Laravel

Read More...
Tutorial Tools | April 18, 2025
Laravel
Rate Limiting & Throttling in Laravel APIs – Preventing Abuse

Rate Limiting & Throttling in Laravel APIs – Preventing Abuse

Laravel rate limiting protects APIs by restricting request frequency. Define limits per user/IP using RateLimiter, like 60/min for users or 10/min for guests. Customize 429 responses when exceeded. Stack multiple limits (e.g., 500/min global + 3/min per email). Apply via throttle middleware. Use throttleWithRedis for better performance. Prevents abuse, DDoS, and ensures API stability.

Read More...
Tutorial Tools | April 21, 2025
Laravel | API
Laravel 12 Inertia & Vue3 CRUD Application Tutorial with Example – Step-by-Step Guide

Laravel 12 Inertia & Vue3 CRUD Application Tutorial with Example – Step-by-Step Guide

Build a Laravel 12 + Inertia + Vue 3 CRUD app with this step-by-step guide. Learn to create a crud system with image uploads, validation, and responsive UI. Covers setup, migrations, controllers, Vue components, file handling, and Inertia integration. This beginner Laravel Inertia Vue 3 tutorial will guide you through how to create CRUD in Laravel using Inertia and Vue 3.

Read More...
Tutorial Tools | April 23, 2025
Laravel | Vue Js
Laravel SQL Tricks: When and How to Use selectRaw() vs DB::raw() with example

Laravel SQL Tricks: When and How to Use selectRaw() vs DB::raw() with example

When working with complex queries in Laravel, understanding the difference between selectRaw() and DB::raw() can significantly boost your productivity and code readability. In this article, we’ll break down both methods, provide actionable tips, and show real-world use cases to write cleaner, more efficient queries in Laravel.

Read More...
Tutorial Tools | April 26, 2025
Laravel
XAMPP vs WAMP vs Laragon: Choosing the Best PHP Development Environment

XAMPP vs WAMP vs Laragon: Choosing the Best PHP Development Environment

Need a PHP development environment for local? 🔍 XAMPP (cross-platform) suits beginners; WAMP (Windows) is lightweight. Laragon (Windows) leads with auto-SSL, PHP switching, Node.js/Git integration —ideal for modern frameworks. Choose Laragon for speed/automation, XAMPP for macOS/Linux. Optimize your workflow!

Read More...
Tutorial Tools | April 28, 2025
Laravel | PHP | Guide