定制 alkoumi/filament-image-radio-button 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

alkoumi/filament-image-radio-button

最新稳定版本:v2.0.2

Composer 安装命令:

composer require alkoumi/filament-image-radio-button

包简介

Filament Form Radio Button But With Images

README 文档

README

A Filament form component that replaces traditional radio buttons with image selection. Supports RTL and Dark Mode.

Total Downloads Packagist Stars License Latest Version on Packagist GitHub Tests Action Status

Demo

Requirements

Version PHP Filament Livewire Laravel
2.x 8.2+ 3.x, 4.x, 5.x 3.x, 4.x 10.x, 11.x, 12.x
1.x 8.1+ 3.x, 4.x 3.x 10.x, 11.x

Installation

composer require alkoumi/filament-image-radio-button

Theme Setup (Filament 4+)

  1. Create a custom theme: Filament Docs

  2. Add the package views to your theme CSS:

@source '../../../../vendor/alkoumi/filament-image-radio-button/resources/views/**/*.blade.php';
  1. Register the theme in your Panel Provider:
->viteTheme('resources/css/filament/admin/theme.css')
  1. Build assets:
npm run build

Usage

Basic Usage

use Alkoumi\FilamentImageRadioButton\Forms\Components\ImageRadioGroup;

ImageRadioGroup::make('report_id')
    ->disk('reports')
    ->options(fn () => Report::pluck('file', 'id')->toArray())

Full API

use Alkoumi\FilamentImageRadioButton\Forms\Components\ImageRadioGroup;

ImageRadioGroup::make('report_id')
    ->label(__('Report Design'))
    ->required()
    ->disk('reports')                    // Storage disk name
    ->options(fn () => [...])            // Array of [ id => image_path ]
    ->gridColumns(4)                     // Number of columns (default: 3)
    ->live()                             // Enable live updates

Dynamic Options

ImageRadioGroup::make('report_id')
    ->disk('reports')
    ->options(fn (Get $get) => Report::whereType($get('type_id'))->pluck('file', 'id')->toArray())
    ->afterStateUpdated(fn (Get $get, Set $set, ?string $state) =>
        $set('selected_report', Report::find($state))
    )
    ->live()

Configuration

Storage Disk Setup

Define a disk in config/filesystems.php:

'reports' => [
    'driver' => 'local',
    'root' => storage_path('app/public/reports'),
    'url' => env('APP_URL') . '/storage/reports',
    'visibility' => 'public',
],

Options Format

Options must be an array where:

  • Key: The value to store (e.g., model ID)
  • Value: The image path relative to the disk
// Example: ['1' => 'storage/template1.jpg', '2' => 'storage/template2.png']
Report::pluck('image_path', 'id')->toArray()

Screenshots

Modes

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

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

统计信息

  • 总下载量: 3k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 7
  • 点击次数: 6
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 6
  • Watchers: 1
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-03-06