一键导入
laravel-coder
Generates modern maintainable Laravel applications code with a focus on
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generates modern maintainable Laravel applications code with a focus on
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate PDFs from Blade views or HTML using spatie/laravel-pdf. Covers creating, formatting, saving, downloading, and testing PDFs with the Browsershot, Cloudflare, or DOMPDF driver.
React + Inertia.js v2 patterns for Laravel full-stack applications. Covers page components, form handling, layouts, navigation, shared data, and typed props. Trigger words — EN: React component, Inertia page, TypeScript component, form handling, useForm, router, Head, Link, page props, shared data, persistent layout, Inertia render, page navigation. Trigger words — UA: React компонент, Inertia сторінка, TypeScript компонент, форми, useForm, навігація, Head, Link, пропси сторінки, спільні дані, макет, Inertia рендер, навігація сторінок.
Tailwind Variants (tv()) patterns for component styling with variants, slots, compound variants, and responsive design. Tailwind CSS 4 compatible. Trigger words — EN: component styles, Tailwind variants, tv(), slots, responsive variants, compound variants, style composition, variant API, button variants, card styles. Trigger words — UA: стилі компонентів, Tailwind варіанти, tv(), слоти, responsive, компонування стилів, compound variants, варіанти кнопки, стилі картки.
Generates a Laravel architecture based on best practices for modern Laravel
Use when building Laravel 13+ applications requiring Eloquent ORM, API
Postgres performance optimization and best practices from Supabase. Use this skill when writing, reviewing, or optimizing Postgres queries, schema designs, or database configurations. Українською: Кращі практики Postgres, оптимізуй базу, продуктивність запитів, індексування, конфігурація бази, пул з'єднань, RLS, схема даних, аналіз запиту, масштабування.
| name | laravel-coder |
| description | Generates modern maintainable Laravel applications code with a focus on |
search-docs tool to get version specific documentation.$model->id directly. Use $model->getKey() (or
$model->getKeyName() when you need the column name) to respect custom
primary keys and keep code forward-compatible.declare(strict_types=1)=== instead of ==getKey() method in models instead of idquery() method in models querieswith() method for eager loadingwithCount() method for eager loading countswithTrashed() method for eager loading
trashed modelsphp artisan make: commands to create new files (i.e. migrations,
controllers, models, etc.). You can list available Artisan commands using the
list-artisan-commands tool.artisan make:class.--no-interaction to all Artisan commands to ensure they work without
user input. You should also pass the correct --options to ensure correct
behavior.DB::; prefer Model::query(). Generate code that leverages Laravel's
ORM capabilities rather than bypassing them.$query->latest()->limit(10);.list-artisan-commands to
check the available options to php artisan make:model.casts() method on a model rather
than the $casts property. Follow existing conventions from other models.ShouldQueue
interface.route()
function.env()
function directly outside of config files. Always use config('app.name'),
not env('APP_NAME').$this->faker->word() or fake()->randomDigit().
Follow existing conventions whether to use $this->faker or fake().php artisan make:test [options] <name> to
create a feature test, and pass --unit to create a unit test. Most tests
should be feature tests.