Skip to content
@laravilt

Laravilt

Laravilt - Modern Laravel Admin Panel with Vue 3, Inertia.js, and AI capabilities

laravilt

Laravilt

A modern Laravel Admin Panel built with Vue 3, Inertia.js, and AI capabilities. Inspired by Filament but powered by the frontend.

Latest Stable Version License Downloads Dependabot Updates PHP Code Styling Tests

Features

  • Modern Stack: Laravel 12, Vue 3, Inertia.js v2, Tailwind CSS v4
  • Beautiful UI: Built on shadcn/vue and Reka UI components
  • AI Integration: Multi-provider AI support (OpenAI, Anthropic, Gemini)
  • Global Search: AI-powered search across all resources
  • Rich Form Builder: 30+ field types with validation
  • Powerful Tables: Sorting, filtering, bulk actions, exports
  • Notifications: Real-time in-app notifications
  • Widgets: Dashboard widgets with charts and stats
  • Multi-tenancy: Built-in tenant support
  • Authentication: Multiple auth methods (passwords, social, passkeys)
  • RTL Support: Full right-to-left language support
  • Dark Mode: System-aware theming

Included Packages

This meta-package includes all Laravilt components:

Package Description
laravilt/support Core utilities and helpers
laravilt/panel Admin panel core framework
laravilt/auth Authentication system
laravilt/forms Form builder with 30+ fields
laravilt/tables Table builder with actions
laravilt/actions Action system for CRUD
laravilt/schemas Schema definitions
laravilt/infolists Information display lists
laravilt/notifications Notification system
laravilt/widgets Dashboard widgets
laravilt/query-builder Query building utilities
laravilt/ai AI assistant integration
laravilt/plugins Plugin system & generators

Requirements

  • PHP 8.3+
  • Laravel 12+
  • Node.js 18+
  • npm or pnpm

Installation

composer require laravilt/laravilt

Run the installer:

php artisan laravilt:install

This will:

  • Publish all configurations
  • Run migrations
  • Setup frontend assets
  • Clear caches

Create Admin User

php artisan laravilt:make-user

Quick Start

1. Create a Panel

php artisan laravilt:panel admin

2. Create a Resource

php artisan laravilt:resource User --generate

This generates a complete CRUD resource with:

  • Resource class
  • Form definition
  • Table definition
  • List, Create, Edit, View pages

3. Configure the Panel

// app/Providers/Laravilt/AdminPanelProvider.php
use Laravilt\Panel\Panel;

class AdminPanelProvider extends PanelProvider
{
    public function panel(Panel $panel): Panel
    {
        return $panel
            ->id('admin')
            ->path('admin')
            ->login()
            ->colors([
                'primary' => '#3b82f6',
            ])
            ->discoverResources(in: app_path('Laravilt/Admin/Resources'))
            ->discoverPages(in: app_path('Laravilt/Admin/Pages'))
            ->globalSearch()
            ->aiProviders(fn ($ai) => $ai
                ->openai()
                ->anthropic()
            );
    }
}

CLI Commands

Panel Management

  • laravilt:panel {name} - Create a new panel
  • laravilt:page {name} - Create a panel page
  • laravilt:cluster {name} - Create a page cluster

Resource Management

  • laravilt:resource {name} - Create a resource
  • laravilt:relation {name} - Create a relation manager

Plugin Development

  • laravilt:plugin {name} - Create a new plugin
  • laravilt:component {name} - Generate plugin components
  • laravilt:make {type} - Generate Laravel components in plugin

System

  • laravilt:install - Install/update Laravilt
  • laravilt:make-user - Create admin user

Configuration

Publish the configuration:

php artisan vendor:publish --tag=laravilt-config

Key configuration options in config/laravilt.php:

return [
    'user_model' => App\Models\User::class,
    'path' => 'admin',
    'guard' => 'web',
    'locale' => 'en',
    'locales' => ['en' => 'English', 'ar' => 'Arabic'],
    'dark_mode' => true,
    'features' => [
        'ai_assistant' => true,
        'global_search' => true,
        'notifications' => true,
    ],
    'ai' => [
        'provider' => env('LARAVILT_AI_PROVIDER', 'openai'),
        'model' => env('LARAVILT_AI_MODEL', 'gpt-4'),
    ],
];

Form Fields

Available form field types:

  • Text, Textarea, RichEditor, MarkdownEditor
  • Number, Currency, Percent
  • Select, MultiSelect, Radio, Checkbox
  • Toggle, Switch
  • DatePicker, DateTimePicker, TimePicker, DateRangePicker
  • FileUpload, ImageUpload
  • ColorPicker, IconPicker
  • Repeater, Builder, KeyValue
  • Code Editor, JSON Editor
  • Tags, Rating, Slider
  • And more...

Table Features

  • Sortable columns
  • Searchable columns
  • Filterable with custom filters
  • Bulk actions
  • Row actions
  • Export to CSV/Excel
  • Pagination with per-page options
  • Sticky header support
  • Column visibility toggle

AI Features

Global Search

AI-enhanced search across all registered resources.

AI Chat

Built-in chat interface supporting:

  • OpenAI (GPT-3.5, GPT-4, GPT-4o)
  • Anthropic (Claude 3, Claude 3.5)
  • Google Gemini

Configure providers in .env:

OPENAI_API_KEY=sk-...
ANTHROPIC_API_KEY=sk-ant-...
GOOGLE_AI_API_KEY=...

Testing

composer test

Code Style

composer format

License

The MIT License (MIT). See License File for more information.

Credits

Pinned Loading

  1. tables tables Public

    Complete table system with columns, filters, sorting, bulk actions, and pagination for Laravilt. Build powerful data tables with search, filters, inline editing, and row/bulk actions.

    HTML 2

  2. notifications notifications Public

    Complete notification system with toast messages, colors, icons, and actions for Laravilt. Display beautiful toast notifications with success, danger, warning, and info states. Supports dismissible…

    HTML

  3. infolists infolists Public

    Complete information display system with entries, sections, and flexible layouts for Laravilt. Display data in organized, readable formats with text, images, badges, icons, and lists.

    HTML

  4. forms forms Public

    Complete form builder system with 30+ field types, validation, and Blade/Inertia.js integration for Laravilt. Build complex forms with text inputs, selects, date pickers, file uploads, rich editors…

    HTML

  5. laravilt laravilt Public

    A modern Laravel Admin Panel built with Vue 3, Inertia.js, and AI capabilities. Inspired by Filament but powered by the frontend.

    PHP 60 1

  6. panel panel Public

    A powerful admin panel framework for Laravel with Vue.js (Inertia.js) frontend. Build beautiful, reactive admin panels with minimal effort.

    PHP 1

Repositories

Showing 10 of 17 repositories
  • laravilt.com Public

    Laravilt Framework Doc website

    laravilt/laravilt.com’s past year of commit activity
    Vue 0 0 0 0 Updated Dec 25, 2025
  • laravilt Public

    A modern Laravel Admin Panel built with Vue 3, Inertia.js, and AI capabilities. Inspired by Filament but powered by the frontend.

    laravilt/laravilt’s past year of commit activity
    PHP 60 MIT 1 0 0 Updated Dec 23, 2025
  • plugins Public

    Complete plugin system with generator, management, and FilamentPHP compatibility for Laravilt.

    laravilt/plugins’s past year of commit activity
    PHP 0 MIT 0 0 1 Updated Dec 22, 2025
  • tables Public

    Complete table system with columns, filters, sorting, bulk actions, and pagination for Laravilt. Build powerful data tables with search, filters, inline editing, and row/bulk actions.

    laravilt/tables’s past year of commit activity
    HTML 2 MIT 0 0 0 Updated Dec 22, 2025
  • users Public

    Complete User and Role management plugin for Laravilt with full RBAC (Role-Based Access Control) system and impersonation support.

    laravilt/users’s past year of commit activity
    PHP 0 MIT 0 0 0 Updated Dec 22, 2025
  • panel Public

    A powerful admin panel framework for Laravel with Vue.js (Inertia.js) frontend. Build beautiful, reactive admin panels with minimal effort.

    laravilt/panel’s past year of commit activity
    PHP 1 MIT 0 0 0 Updated Dec 22, 2025
  • actions Public

    Complete form builder system with 30+ field types, validation, and Blade/Inertia.js integration for Laravilt. Build complex forms with text inputs, selects, date pickers, file uploads, rich editors, repeaters, and more.

    laravilt/actions’s past year of commit activity
    HTML 0 MIT 0 0 0 Updated Dec 22, 2025
  • forms Public

    Complete form builder system with 30+ field types, validation, and Blade/Inertia.js integration for Laravilt. Build complex forms with text inputs, selects, date pickers, file uploads, rich editors, repeaters, and more.

    laravilt/forms’s past year of commit activity
    HTML 0 MIT 0 0 1 Updated Dec 22, 2025
  • schemas Public

    Complete schema system with sections, tabs, grids, and layout components for Laravilt. Organize form fields and information displays with powerful layout components.

    laravilt/schemas’s past year of commit activity
    Vue 0 MIT 0 0 0 Updated Dec 21, 2025
  • support Public

    Foundation package providing base components, utilities, and contracts for all Laravilt packages. Build custom components with reusable traits, utilities, and base classes.

    laravilt/support’s past year of commit activity
    Vue 0 MIT 0 0 0 Updated Dec 21, 2025

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

PHP HTML Vue

Most used topics

Loading…