Tag: laravel
-

How to Master Detecting and Fixing Race Conditions in Laravel Applications
Learn proven techniques for detecting and fixing race conditions in Laravel applications using locks, atomic queries, and concurrency testing tools.
-

Browse and Execute Artisan Commands from an Interactive TUI
Learn how to browse and execute artisan commands from an interactive TUI using Laravel Artisan TUI — install, navigate, and run commands faster today.
-

Build Your First Laravel AI Agent
Learn to build intelligent Laravel AI Agents with tools and structured output. Step-by-step guide with practical examples using the Laravel AI SDK.
-

Laravel’s Password Leak Validator
TIL there’s a built-in validation rule in Laravel to check if passwords were leaked via HIBP. Here’s how Password::uncompromised() works and how to use it.
-

Laravel Queues: Stop Making Your Users Wait
Learn Laravel queues tutorial from setup to production — database & Redis drivers, job retries, Supervisor config, Horizon, and advanced batching patterns.
-

Modern PHP Development: What It Looks Like in 2026
Discover what modern PHP development will look like in 2026, including asynchronous programming, serverless and microservices, AI/ML integration, and more. Prep
-

The Definitive Laravel Developer Guide for 2026
Comprehensive guide for Laravel developers in 2026, covering AI/ML integration, latest features, best practices, and the Laravel ecosystem.
-

Save laravel app settings in database
I this post I am going to share one feature which most of the application have these days to change certain settings using UI, it can be implemented in many ways but one way I find doing is to store settings in the database and provide an auto-generated form to change the settings.
-

Ready to use UUID in your next laravel app?
UUID stands for Universal Unique Identifier, it has been used to generate a unique id which is a 128 bit long numbers represented by 32 hexadecimal digits. Mostly used in software development to uniquely identify information with no further context.
-

VueJS pagination component to paginate anything in Laravel
When it comes to listing long length data with pagination, laravel has the simplest solution to achieve it, you just call paginate() method on the Eloquent query builder and laravel will do the heavy lifting to give you paginated data. Now laravel and Vue are perfect match since Vue is the frontend framework of choice in…