Skip to content

Releases: tomatophp/filament-users

v2.0.10

30 Oct 09:15
Compare
Choose a tag to compare

v2.0.9

29 Oct 15:41
7a1dab2
Compare
Choose a tag to compare

Full Changelog: v2.0.8...v2.0.9

v2.0.8

29 Oct 12:04
Compare
Choose a tag to compare

Custom Resource Classes

you can customize all resource classes to be any class you want with the same return from the config file

/**
 * ---------------------------------------------
 * Resource Building
 * ---------------------------------------------
 * if you want to use the resource custom class
 */
'resource' => [
    'table' => [
        'class' => \TomatoPHP\FilamentUsers\Resources\UserResource\Table\UserTable::class,
        'filters' => \TomatoPHP\FilamentUsers\Resources\UserResource\Table\UserFilters::class,
        'actions' => \TomatoPHP\FilamentUsers\Resources\UserResource\Table\UserActions::class,
        'bulkActions' => \TomatoPHP\FilamentUsers\Resources\UserResource\Table\UserBulkActions::class,
    ],
    'form' => [
        'class' => \TomatoPHP\FilamentUsers\Resources\UserResource\Form\UserForm::class
    ],
    'infolist' => [
        'class' => \TomatoPHP\FilamentUsers\Resources\UserResource\InfoList\UserInfoList::class
    ],
    'pages' => [
        'list' => \TomatoPHP\FilamentUsers\Resources\UserResource\Actions\ManageUserActions::class,
        'create' => \TomatoPHP\FilamentUsers\Resources\UserResource\Actions\CreatePageActions::class,
        'edit' => \TomatoPHP\FilamentUsers\Resources\UserResource\Actions\EditPageActions::class,
        'delete' => \TomatoPHP\FilamentUsers\Resources\UserResource\Actions\ViewPageActions::class
    ]
]

Full Changelog: v2.0.7...v2.0.8

v2.0.7

28 Oct 09:36
Compare
Choose a tag to compare

Full Changelog: v2.0.6...v2.0.7

v2.0.6

26 Oct 16:19
60c8f86
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.5...v2.0.6

v2.0.5

26 Oct 16:16
Compare
Choose a tag to compare

Full Changelog: v2.0.4...v2.0.5

v2.0.4

26 Oct 15:21
Compare
Choose a tag to compare
  • fix phpstan

Full Changelog: v2.0.3...v2.0.4

v2.0.3

24 Oct 06:46
8d7c5c4
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.2...v2.0.3

v2.0.2

21 Oct 09:04
Compare
Choose a tag to compare
  • Add Table listing test
  • Make shield config false by default

Full Changelog: v2.0.1...v2.0.2

v2.0.1

19 Oct 16:20
Compare
Choose a tag to compare
  • update code user resource code structure

Full Changelog: v2.0.0...v2.0.1