17 articles

📰 Dev.to · Raheel Shan

Articles from Dev.to · Raheel Shan · 17 articles · Updated every 3 hours · View all reads

All ⚡ AI Lessons (9111) ArXiv cs.AIDev.to · FORUM WEBForbes InnovationOpenAI NewsDev.to AIHugging Face Blog
Write One Query Class Instead of Many: The AQC Design Pattern for Laravel
Dev.to · Raheel Shan 1mo ago
Write One Query Class Instead of Many: The AQC Design Pattern for Laravel
When I introduced the Atomic Query Construction (AQC) design pattern, a few people asked: "Is this...
Four Ways to Trigger Delete Row from a Table
Dev.to · Raheel Shan 1mo ago
Four Ways to Trigger Delete Row from a Table
Assume we have this route: Route::delete('/pages/{page}', [PageController::class,...
Laravel Blade Partial API Pattern: Fetching Data — The Missing Part
Dev.to · Raheel Shan 5mo ago
Laravel Blade Partial API Pattern: Fetching Data — The Missing Part
In the previous article, we built the foundation for what I called Laravel Blade Partial API Pattern....
Laravel Blade Partial API Pattern with HTMX
Dev.to · Raheel Shan 5mo ago
Laravel Blade Partial API Pattern with HTMX
We have seen splendid UIs in this latest era. All thanks to Javascript, which has snatched the...
Livewire without Livewire, Inertia without Inertia, GraphQL without GraphQL. And all with plain Laravel
Dev.to · Raheel Shan 6mo ago
Livewire without Livewire, Inertia without Inertia, GraphQL without GraphQL. And all with plain Laravel
Every few years, the Laravel ecosystem forgets how powerful it actually is. We start believing we...
Laravel Doesn’t Need GraphQL Part 2: Use Components with Props for Exact Data
Dev.to · Raheel Shan 6mo ago
Laravel Doesn’t Need GraphQL Part 2: Use Components with Props for Exact Data
GraphQL often gets attention because of its ability to let the frontend decide what data it needs....
Laravel Doesn’t Need GraphQL Part 1: Use DTOs and AQC for Exact Data
Dev.to · Raheel Shan 6mo ago
Laravel Doesn’t Need GraphQL Part 1: Use DTOs and AQC for Exact Data
GraphQL looks shiny, but behind that shine is a pile of extra rules, schemas, and resolvers. If...
What You Really Need Is Event-Based Laravel
Dev.to · Raheel Shan 6mo ago
What You Really Need Is Event-Based Laravel
Many times while building Laravel applications, I ran into situations where a single process required...
Laravel Livewire: Understanding How Livewire Works Under the Hood
Dev.to · Raheel Shan 6mo ago
Laravel Livewire: Understanding How Livewire Works Under the Hood
Livewire has become a popular choice for developers who want to create PEMPA applications without...
Skip Livewire? Why Laravel Blade + AQC + Alpine Might Be All You Need
Dev.to · Raheel Shan 6mo ago
Skip Livewire? Why Laravel Blade + AQC + Alpine Might Be All You Need
Introduction Livewire is a popular choice in the Laravel ecosystem for building reactive...
A Complete Picture to Make Laravel Blade Files Alive
Dev.to · Raheel Shan 7mo ago
A Complete Picture to Make Laravel Blade Files Alive
Stop Treating Your Blade Files Like Trash Bins. Give Them...
Don’t Pass Array or Variables to Laravel Blade Views Instead Do This
Dev.to · Raheel Shan 7mo ago
Don’t Pass Array or Variables to Laravel Blade Views Instead Do This
Are you a Laravel developer. Do you love Blade. It’s simple, expressive, and fits naturally with the...
Laravel Blade, But Smarter: Autocomplete and DTO Discipline with ViewModels and Strict Access
Dev.to · Raheel Shan 7mo ago
Laravel Blade, But Smarter: Autocomplete and DTO Discipline with ViewModels and Strict Access
In the last three articles of this series, we explored how to bring discipline and type safety into...