← ClaudeAtlas

laravel-developmentlisted

Guides Laravel backend development including routing, controllers, migrations, Eloquent ORM optimization, and form validation. Use when writing Laravel code.
aldiipratama/dyy-plugin · ★ 0 · API & Backend · score 66
Install: claude install-skill aldiipratama/dyy-plugin
# Laravel Backend Development Skill ## Quick Start Create a controller with form validation: ```bash # Generate controller and request php artisan make:controller Api/PostController --api php artisan make:request Post/StoreRequest ``` ## Eloquent Optimization Avoid N+1 query problems by using eager loading: ```php // Good - runs 2 queries $posts = Post::with('comments')->get(); // Bad - runs 1 + N queries $posts = Post::all(); foreach ($posts as $post) { $post->comments; } ```