Skip to content

Releases: tomatophp/filament-users

v2.0.15

14 Dec 11:06
5ced784
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.14...v2.0.15

v2.0.14

06 Dec 12:27
b38daed
Compare
Choose a tag to compare

What's Changed

  • Add user language translations for pt_PT locale by @rpsimao in #25

New Contributors

Full Changelog: v2.0.13...v2.0.14

v2.0.13

08 Nov 20:17
053e731
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.12...v2.0.13

v2.0.12

08 Nov 18:46
Compare
Choose a tag to compare
  • update testbench workflow

Full Changelog: v2.0.11...v2.0.12

v2.0.11

05 Nov 13:35
Compare
Choose a tag to compare

Full Changelog: v2.0.10...v2.0.11

v2.0.10

30 Oct 09:15
Compare
Choose a tag to compare

Full Changelog: v2.0.9...v2.0.10

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