PHPackages                             adelali/filament-cards-select - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. adelali/filament-cards-select

ActiveLibrary

adelali/filament-cards-select
=============================

Card-style radio and checkbox list components for Filament

v0.1.1(5mo ago)05MITBladePHP ^8.2

Since Dec 9Pushed 5mo agoCompare

[ Source](https://github.com/3adeling/filament-cards-select)[ Packagist](https://packagist.org/packages/adelali/filament-cards-select)[ RSS](/packages/adelali-filament-cards-select/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

Filament Cards Select
=====================

[](#filament-cards-select)

Card-style radio and checkbox list components for Filament v4.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require adelali/filament-cards-select
```

Usage
-----

[](#usage)

### Basic Radio Selection

[](#basic-radio-selection)

```
use Adelali\FilamentCardsSelect\Forms\Components\CardRadio;

CardRadio::make('plan')
    ->options([
        'basic' => 'Basic Plan',
        'pro' => 'Pro Plan',
        'enterprise' => 'Enterprise Plan',
    ])
```

### With Descriptions

[](#with-descriptions)

```
CardRadio::make('plan')
    ->options([
        'basic' => 'Basic Plan',
        'pro' => 'Pro Plan',
        'enterprise' => 'Enterprise Plan',
    ])
    ->descriptions([
        'basic' => 'Perfect for individuals getting started',
        'pro' => 'For growing teams and businesses',
        'enterprise' => 'Custom solutions for large organizations',
    ])
```

### Multiple Selection (Checkbox List)

[](#multiple-selection-checkbox-list)

```
CardRadio::make('features')
    ->multiple()
    ->options([
        'sso' => 'Single Sign-On',
        'api' => 'API Access',
        'support' => 'Priority Support',
    ])
```

Or use the alias:

```
CardRadio::make('features')
    ->checkboxList()
    ->options([...])
```

### Boolean Selection

[](#boolean-selection)

```
CardRadio::make('is_active')
    ->boolean('Active', 'Inactive')
```

### Grid Columns

[](#grid-columns)

Control the number of columns in the grid:

```
CardRadio::make('plan')
    ->options([...])
    ->columns(2)
```

Responsive columns with breakpoints:

```
CardRadio::make('plan')
    ->options([...])
    ->columns([
        'default' => 1,
        'sm' => 2,
        'md' => 3,
        'lg' => 4,
    ])
```

### Inline Layout

[](#inline-layout)

Display options inline:

```
CardRadio::make('plan')
    ->options([...])
    ->inline()
```

### Disabling Options

[](#disabling-options)

```
CardRadio::make('plan')
    ->options([
        'basic' => 'Basic Plan',
        'pro' => 'Pro Plan',
        'enterprise' => 'Enterprise Plan',
    ])
    ->disableOptionWhen(fn (string $value): bool => $value === 'enterprise')
```

Requirements
------------

[](#requirements)

- PHP 8.2+
- Filament v4

License
-------

[](#license)

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

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance73

Regular maintenance activity

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

152d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/06fba8ac7fb29684fe4c40ad9ab8424857b38f14621e888a1734920610e8502a?d=identicon)[3adeling](/maintainers/3adeling)

---

Top Contributors

[![3adeling](https://avatars.githubusercontent.com/u/2550435?v=4)](https://github.com/3adeling "3adeling (2 commits)")

### Embed Badge

![Health badge](/badges/adelali-filament-cards-select/health.svg)

```
[![Health](https://phpackages.com/badges/adelali-filament-cards-select/health.svg)](https://phpackages.com/packages/adelali-filament-cards-select)
```

###  Alternatives

[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

320392.1k17](/packages/codewithdennis-filament-select-tree)[ralphjsmit/laravel-filament-components

A collection of reusable components for Filament.

10972.2k2](/packages/ralphjsmit-laravel-filament-components)[rawilk/filament-password-input

Enhanced password input component for filament.

52232.4k3](/packages/rawilk-filament-password-input)[schmeits/filament-character-counter

This is a Filament character counter TextField and Textarea form field for Filament v4 and v5

33184.7k6](/packages/schmeits-filament-character-counter)[defstudio/filament-searchable-input

A searchable autocomplete input for Filament forms

3212.4k](/packages/defstudio-filament-searchable-input)[codebar-ag/laravel-filament-json-field

A Laravel Filament JSON Field integration with CodeMirror support

1124.1k](/packages/codebar-ag-laravel-filament-json-field)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
