drafolin / filament-collapse
This plugins aims to collapse the space between multiple fields, in the same way as ToggleButtons->grouped()
Fund package maintenance!
drafolin
Requires
- php: ^8.1
- filament/forms: ^3.0
- spatie/laravel-package-tools: ^1.15.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.9
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.0
- pestphp/pest: ^2.1
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- spatie/laravel-ray: ^1.26
README
Filament Collapse
The Collapse Group field is a layout field that collapses space between components. It is useful for grouping related fields together, such as phone numbers or start and end dates.
Installation
You can install the package via composer:
composer require drafolin/filament-collapse
Optionally, you can publish the views using
php artisan vendor:publish --tag="filament-collapse-views"
Usage
<?php use Drafolin\FilamentCollapse\FilamentCollapse; public function form(Form $form) { return form ->schema([ FilamentCollapse::make([ // Add fields here. Ideally, these fields should be related. // For now, it's only been tested with TextInput fields, and fields that inherit from it. TextInput::make('first_name') ->label('First Name'), // Labels are transformed into placeholders. TextInput::make('last_name') ->label('Last Name'), ]) ->label('Collapse Group'), // This field is a regular field, so it also supports base filament properties. ]); }
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Everyone is welcome to contribute to this project. To do so, simply open an issue or a pull request.
Credits
License
The MIT License (MIT). Please see License File for more information.