PHPackages                             andrefelipe18/tallstackuifilament - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. andrefelipe18/tallstackuifilament

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

andrefelipe18/tallstackuifilament
=================================

TallStackUI filament integration

v1.0.2(1y ago)10423[3 PRs](https://github.com/andrefelipe18/tallstackui-filament/pulls)MITPHPPHP ^8.2CI passing

Since Mar 28Pushed 5mo ago1 watchersCompare

[ Source](https://github.com/andrefelipe18/tallstackui-filament)[ Packagist](https://packagist.org/packages/andrefelipe18/tallstackuifilament)[ Docs](https://github.com/andrefelipe18/tallstackuifilament)[ GitHub Sponsors](https://github.com/andrefelipe18)[ RSS](/packages/andrefelipe18-tallstackuifilament/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (12)Versions (8)Used By (0)

TallStackUI Filament
====================

[](#tallstackui-filament)

[![TallStackUI Filament](https://raw.githubusercontent.com/andrefelipe18/tallstackui-filament/main/art/andrefelipe18-tallstackuifilament.png)](https://raw.githubusercontent.com/andrefelipe18/tallstackui-filament/main/art/andrefelipe18-tallstackuifilament.png)

[![Latest Version on Packagist](https://camo.githubusercontent.com/8ec1a813901870c1b6850a13d760690bc78d3d5d041df6fe33c3141971187dfe/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f616e64726566656c69706531382f74616c6c737461636b756966696c616d656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/andrefelipe18/tallstackuifilament)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/d239add65c0bed37868c690a583c1a0d3b812c4eeffa6c5862306b2ac7cc5fc8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f616e64726566656c69706531382f74616c6c737461636b756966696c616d656e742f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d6173746572266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/andrefelipe18/tallstackuifilament/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3Amaster)[![Total Downloads](https://camo.githubusercontent.com/2793dfe8af30bb55fc32aaa241f92f1c2b6643f4231b6b79bdd212b7b8bf3f16/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f616e64726566656c69706531382f74616c6c737461636b756966696c616d656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/andrefelipe18/tallstackuifilament)

Introduction
------------

[](#introduction)

[TallStackUI](https://tallstackui.com/) is a powerful suite of Blade components for TALL Stack apps.

This package allows you to use TallStackUI components within Filament forms, bringing together the best of both worlds.

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

[](#installation)

1. Install [TallStackUI](https://tallstackui.com/docs/v2/installation)

> Don't worry about the Blade directives for styles and scripts inside the panel; we add them automatically for you.

2. Install this package via Composer:

```
composer require andrefelipe18/tallstackuifilament
```

3. Register the plugin for the Filament Panels you want to use:

```
use TallStackUIFilament\TallStackUIPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            TallStackUIPlugin::make()
        ]);
}
```

4. Run the following command:

For NPM users

```
npm run build && php artisan optimize:clear
```

For Bun users

```
bun run build && php artisan optimize:clear
```

For PNPM users

```
pnpm run build && php artisan optimize:clear
```

Usage
-----

[](#usage)

You can now use TallStackUI components in your Filament forms. For example:

```
use TallStackUIFilament\Forms\Components\Pin;

public function form(Form $form): Form
{
    return $form
        ->schema([
            Pin::make('pin_tallstack')
                ->label('Pin TallStackUI')
                ->helperText('Helper Text')
                ->hint('Hint Text')
                ->length(4)
                ->prefix('PIN')
                ->letters()
                ->required(),
        ]);
}
```

Documentation
-------------

[](#documentation)

- [Checkbox](./docs/Forms/Components/Checkbox.md)
- [Color](./docs/Forms/Components/Color.md)
- [Date](./docs/Forms/Components/Date.md)
- [Input](./docs/Forms/Components/Input.md)
- [Number](./docs/Forms/Components/Number.md)
- [Password](./docs/Forms/Components/Password.md)
- [Pin](./docs/Forms/Components/Pin.md)
- [Range](./docs/Forms/Components/Range.md)
- [Select](./docs/Forms/Components/Select.md)
- [Tag](./docs/Forms/Components/Tag.md)
- [Textarea](./docs/Forms/Components/Textarea.md)
- [Time](./docs/Forms/Components/Time.md)
- [Toggle](./docs/Forms/Components/Toggle.md)

TODO:
-----

[](#todo)

- Write tests
- Add Signature component
- Add Radio component
- Add File component
- Add support a layout components (Step and Tabs)
- Add rating component
- Add support for relationship in Select component

Need Help?
----------

[](#need-help)

🐞 If you spot a bug, please [submit a detailed issue.](https://github.com/andrefelipe18/tallstackui-filament/issues/new/choose)

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

We welcome contributions of all kinds! If you'd like to improve this package, follow these steps:

1. Fork the repository.
2. Make your changes in a new branch.
3. Submit a pull request with a clear description of your changes.

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Thank you for helping improve TallStackUI Filament! 🚀

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [André Domingues](https://github.com/andrefelipe18)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

38

—

LowBetter than 85% of packages

Maintenance60

Regular maintenance activity

Popularity17

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 74.5% 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

3

Last Release

407d ago

PHP version history (2 changes)v1.0.0PHP ^8.3

v1.0.1PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/79f7d53b4eb8f6678d6738e1a61b868fdc8d6638383b4fff25bf0e42b062fae0?d=identicon)[André Domingues](/maintainers/Andr%C3%A9%20Domingues)

---

Top Contributors

[![andrefelipe18](https://avatars.githubusercontent.com/u/96439642?v=4)](https://github.com/andrefelipe18 "andrefelipe18 (35 commits)")[![jeffersongoncalves](https://avatars.githubusercontent.com/u/411493?v=4)](https://github.com/jeffersongoncalves "jeffersongoncalves (11 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")

---

Tags

filamentfilamentphpplugintallstackuilaravelfilamenttallstackuiandrefelipe18

###  Code Quality

TestsPest

Static AnalysisRector

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/andrefelipe18-tallstackuifilament/health.svg)

```
[![Health](https://phpackages.com/badges/andrefelipe18-tallstackuifilament/health.svg)](https://phpackages.com/packages/andrefelipe18-tallstackuifilament)
```

###  Alternatives

[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)[swisnl/filament-backgrounds

Beautiful backgrounds for Filament auth pages

54149.2k6](/packages/swisnl-filament-backgrounds)[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[tapp/filament-google-autocomplete-field

Filament plugin that provides a Google Autocomplete field

3098.1k](/packages/tapp-filament-google-autocomplete-field)

PHPackages © 2026

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