laravel-laravel-prompting-patterns

Installation
SKILL.md

Laravel Prompting Patterns

Use Laravel's vocabulary to get idiomatic code. Generic requests produce generic solutions that don't leverage the framework.

Database Operations

Generic

"Get all active users with their posts"

Laravel-Specific

"Query active users with eager-loaded posts using Eloquent:

User::where('active', true)
    ->with('posts')
    ->get();
Related skills
Installs
19
Repository
noartem/skills
GitHub Stars
9
First Seen
Jan 30, 2026