tomatophp / filament-types-module
Manage any type on your app in Database with easy to use Resource for FilamentPHP
Fund package maintenance!
3x1io
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:laravel-module
Requires
- php: ^8.1|^8.2
- filament/filament: ^3.0.0
- filament/spatie-laravel-media-library-plugin: ^3.2
- filament/spatie-laravel-translatable-plugin: ^3.2
- joshbrw/laravel-module-installer: ^2.0
- tomatophp/console-helpers: ^1.1
- tomatophp/filament-icons: ^1.0
- tomatophp/filament-plugins: ^1.0
This package is auto-updated.
Last update: 2024-10-24 20:39:52 UTC
README
Manage any type on your app in Database with easy to use Resource for FilamentPHP
Screenshots
Installation
composer require tomatophp/filament-types-module-module
after install your package please run this command
php artisan filament-types:install
Register New Type
you can add new type using config file config/filament-types.php
or you can register a type from your provider using our Facade
use Modules\TypesManager\Facades\FilamentTypes; FilamentTypes::register([ 'types', 'groups' ], 'accounts');
Use Type Helper
you can access types from anywhere by using type helper function
type_of($key);
i will return type object
Use Type Column
you can use type column in your table like this
use Modules\TypesManager\Components\TypeColumn; TypeColumn::make('type')->searchable(),
Support
you can join our discord server to get support TomatoPHP
Docs
you can check docs of this package on Docs
Changelog
Please see CHANGELOG for more information on what has changed recently.
Security
Please see SECURITY for more information about security.
Credits
License
The MIT License (MIT). Please see License File for more information.