Skip to content

Latest commit

 

History

History
83 lines (52 loc) · 2.37 KB

README.md

File metadata and controls

83 lines (52 loc) · 2.37 KB

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.