承接 rhaima/voltpanel 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

rhaima/voltpanel

Composer 安装命令:

composer require rhaima/voltpanel

包简介

A powerful admin panel builder for Laravel using the VILT stack (Vue, Inertia, Laravel, Tailwind)

README 文档

README

Latest Version on Packagist Total Downloads License

A powerful admin panel builder for Laravel using the VILT stack (Vue, Inertia.js, Laravel, Tailwind CSS). Inspired by Filament PHP, VoltPanel brings a similar developer experience to the VILT ecosystem.

Features

  • Resource Builder — Define models, forms, and tables in a single PHP class with zero boilerplate CRUD
  • Rich Form Components — TextInput, Select, RichEditor (Tiptap), DatePicker, ColorPicker, FileUpload, Toggle, Checkbox, Radio, Textarea, and more
  • Powerful Tables — Sortable, searchable, and filterable columns with TextColumn, BadgeColumn, BooleanColumn, DateColumn, ImageColumn, IconColumn
  • Table Filters — SelectFilter, TernaryFilter with saved filter presets
  • Actions & Bulk Actions — Built-in Delete, Export (CSV/Excel/PDF), and Import actions with custom action support
  • Dashboard Widgets — StatsOverview, Chart (Chart.js), AdvancedChart, TimeSeries, StatsChart, and ActivityLog widgets with customizable layouts
  • Role-Based Authorization — Built-in roles and permissions system with super admin support
  • Activity Logging — Automatic tracking of create, update, and delete operations
  • Import & Export — CSV, Excel (XLSX), and PDF export via OpenSpout and DomPDF; CSV/Excel import with chunked processing
  • Multi-Tenancy — Data isolation by tenant with subdomain/domain identification support
  • Media Library — File uploads and media management with multiple disk support
  • Global Search — Search across all resources with customizable keybindings
  • Theming — Customizable colors, dark mode toggle, and CSS variable-based theming (supports Tailwind v3 & v4)
  • Multi-Panel Support — Register multiple admin panels with independent configurations
  • Comments — Threaded comments with mentions support on any resource
  • Tags & Favorites — Tagging system and user favorites for resources
  • Webhooks — Event-driven webhook dispatching
  • Plugin System — Extend VoltPanel with custom plugins
  • Localization — Multi-language support (English, French, Spanish, German, Arabic)
  • Settings Management — Key-value system settings with caching
  • Scheduled Exports — Automate recurring data exports

Requirements

  • PHP 8.2+
  • Laravel 11 or 12
  • Node.js 18+
  • Composer 2.x

Installation

1. Install via Composer

composer require rhaima/voltpanel

2. Run the install command

php artisan voltpanel:install

This will publish the config file, migrations, Vue components, and CSS assets (auto-detects Tailwind v3 or v4).

3. Run migrations

php artisan migrate

4. Install frontend dependencies and build

npm install
npm run dev

5. Create your first panel

php artisan voltpanel:panel Admin

6. Register the panel

In your app/Providers/AppServiceProvider.php:

use App\Panels\AdminPanel;
use Rhaima\VoltPanel\Facades\VoltPanel;

public function boot(): void
{
    VoltPanel::register(new AdminPanel());
}

7. Add the HasRoles trait to your User model

use Rhaima\VoltPanel\Authorization\Traits\HasRoles;

class User extends Authenticatable
{
    use HasRoles;
}

Visit http://yourapp.com/admin to access the panel.

Quick Example

Generate a resource:

php artisan voltpanel:resource Post

Define your resource in a single class:

use Rhaima\VoltPanel\Resources\Resource;
use Rhaima\VoltPanel\Forms\Form;
use Rhaima\VoltPanel\Tables\Table;
use Rhaima\VoltPanel\Forms\Components\TextInput;
use Rhaima\VoltPanel\Forms\Components\RichEditor;
use Rhaima\VoltPanel\Forms\Components\Select;
use Rhaima\VoltPanel\Tables\Columns\TextColumn;
use Rhaima\VoltPanel\Tables\Columns\BadgeColumn;
use Rhaima\VoltPanel\Tables\Columns\DateColumn;

class PostResource extends Resource
{
    protected static ?string $model = Post::class;

    public static function form(Form $form): Form
    {
        return $form->schema([
            TextInput::make('title')->required(),
            RichEditor::make('content'),
            Select::make('status')->options([
                'draft' => 'Draft',
                'published' => 'Published',
            ]),
        ]);
    }

    public static function table(Table $table): Table
    {
        return $table->columns([
            TextColumn::make('title')->sortable()->searchable(),
            BadgeColumn::make('status'),
            DateColumn::make('created_at'),
        ]);
    }
}

Configuration

Publish the config file:

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

See config/voltpanel.php for all available options including path, middleware, branding, theme, authorization, activity log, multi-tenancy, and more.

Documentation

Full documentation is available at https://rhaima96.github.io/voltpanel-docs.

Tech Stack

Layer Technology Purpose
Backend Laravel 11/12 API, routing, ORM, authentication
Frontend Vue 3 Reactive UI components
Bridge Inertia.js SPA without building an API
Styling Tailwind CSS v3/v4 Utility-first CSS
Charts Chart.js Dashboard visualizations
Rich Editor Tiptap WYSIWYG content editing
Export OpenSpout, DomPDF CSV, Excel, PDF generation

Testing

composer test

Changelog

Please see the releases page for more information on what has changed.

Contributing

Contributions are welcome! Please see CONTRIBUTING for details.

Security

If you discover a security vulnerability, please send an email to mohamed.rhaima96@gmail.com. All security vulnerabilities will be promptly addressed.

Credits

License

The MIT License (MIT). Please see License File for more information.

rhaima/voltpanel 适用场景与选型建议

rhaima/voltpanel 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4 次下载、GitHub Stars 达 10, 最近一次更新时间为 2026 年 02 月 08 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「admin」 「crud」 「panel」 「laravel」 「vue」 「inertia」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 rhaima/voltpanel 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 rhaima/voltpanel 我们能提供哪些服务?
定制开发 / 二次开发

基于 rhaima/voltpanel 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 4
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 11
  • 点击次数: 26
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 10
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-02-08