Skip to content

Releases: dcasia/collapsible-resource-manager

v1.2.0

08 Dec 10:15
Compare
Choose a tag to compare
  • Add ability to set badges!

image

v1.1.1

04 Dec 12:48
Compare
Choose a tag to compare
  • Add option to make top level menu clickable:
TopLevelResource::make([
    'linkTo' => User::class,
]),

or

TopLevelResource::make()->linkToResource(User::class)

v1.1.0

18 Nov 14:50
Compare
Choose a tag to compare
  • Add ->label() method to override the label manually
  • Rename title to label

v1.0.0

18 Nov 02:36
Compare
Choose a tag to compare
  • The new version is way more flexible than the previous one, but there is also a lot of breaking changes, check out the docs for new usage.

v0.1.9

26 Oct 06:23
Compare
Choose a tag to compare
  • Add the ability to remember the state of collapsed/expanded menu links. #12
  • Fix issue that would prevent menu showing up when using external/internal links: #13

v0.1.6

12 Oct 01:39
Compare
Choose a tag to compare
  • Hide menu if all resources and groups are empty (follows the default resource manager behavior)

v0.1.5

09 Oct 02:19
Compare
Choose a tag to compare
  • Fixed a typo on the config setting, please rename disable_default_resource_manage to disable_default_resource_manager on your collapsible-resource-manager.php file

v0.1.4

03 Oct 09:55
Compare
Choose a tag to compare
  • Add the ability to set custom icons on the resources groups
class Article extends Resource
{
    //...
    public static function icon(): string
    {
        return <<<SVG
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
                <path fill="currentColor" d="......"/>
            </svg>
        SVG;
    }
}

v0.1.3

02 Oct 05:56
Compare
Choose a tag to compare
  • Add the ability to define resources without the need of a group
  • Add the ability to add external and internal links to the sidebar
  • Add the ability to add custom label directly from the configuration, example:
'resources' => [
    'Custom Label' => \App\Nova\SomeResource::class
]

v0.1.2

30 Sep 16:43
Compare
Choose a tag to compare
  • Invert the expanded / contracted indicator