LaravelPackages.net
Acme Inc.
Toggle sidebar
tomatophp/filament-types-module

Manage any type on your app in Database with easy to use Resource for FilamentPHP

5
0
v1.0.0
About tomatophp/filament-types-module

tomatophp/filament-types-module is a Laravel package for manage any type on your app in database with easy to use resource for filamentphp. It currently has 0 GitHub stars and 5 downloads on Packagist (latest version v1.0.0). Install it with composer require tomatophp/filament-types-module. Discover more Laravel packages by tomatophp or browse all Laravel packages to compare alternatives.

Last updated

Filament Types Manager Module

Latest Stable Version PHP Version Require License Downloads

Manage any type on your app in Database with easy to use Resource for FilamentPHP

Screenshots

Types Filters Type Col Form

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.

Comments