一键导入
laravel-architecture
Generates a Laravel architecture based on best practices for modern Laravel
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generates a Laravel architecture based on best practices for modern Laravel
用 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 modern maintainable Laravel applications code with a focus on
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-architecture |
| description | Generates a Laravel architecture based on best practices for modern Laravel |
lorisleiva/laravel-actions)Code is organized into modules under Modules/:
Modules/Auth/ — Authentication, OAuth, JWTModules/Shared/ — Shared models (UtilityType, Currency, ServiceCategory)Modules/Address/ — Address management, RegionsModules/Meter/ — Meters, Readings, PhotosModules/Billing/ — Service Providers, TariffsModules/Export/ — CSV/PDF exportEach module has its own Actions/, Models/, Http/, routes/, tests/ directories.
app/Http/Middleware/.bootstrap/app.php is the file to register middleware, exceptions, and
routing files.bootstrap/providers.php contains application specific service providers.bootstrap/app.php or
routes/console.php for console configuration.app/Console/Commands/ are
automatically available and do not require manual registration.