بنقرة واحدة
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 applications.
Українською: архітектура Laravel, структура проєкту, патерни Laravel, сервісний шар, екшни, доменна логіка, організація коду, спроєктуй архітектуру, створи структуру, рефакторинг архітектури, доменна структура, Action клас
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.