Releases: dcasia/collapsible-resource-manager
Releases · dcasia/collapsible-resource-manager
v1.2.0
v1.1.1
v1.1.0
v1.0.0
v0.1.9
v0.1.6
v0.1.5
v0.1.4
- 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
- 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
]