Releases: dcasia/collapsible-resource-manager
Releases · dcasia/collapsible-resource-manager
v2.0.1
Compare
Sorry, something went wrong.
No results found
v2.0.0
Compare
Sorry, something went wrong.
No results found
What's Changed
Full Changelog : v1.4.2...v2.0.0
1.4.2
Compare
Sorry, something went wrong.
No results found
Fix issue on an old version of PHP #75
1.4.1
Compare
Sorry, something went wrong.
No results found
Fix issue introduced on version 1.4.0 where an exception would be thrown if group members were defined using NovaResource::make()
1.4.0
Compare
Sorry, something went wrong.
No results found
Upgrade frontend dependencies #73
Hide groups when all its children resources are unauthorized #73
v1.3.3
Compare
Sorry, something went wrong.
No results found
Fix ->label() trying to call global functions #65
v1.3.2
Compare
Sorry, something went wrong.
No results found
Automatically retrieve Badge and Label from resource file if static methods are set on the resource file:
public static function badge () {}
public static function label () {}
v1.3.1
Compare
Sorry, something went wrong.
No results found
TopLevel remember state #43
v1.3.0
Compare
Sorry, something went wrong.
No results found
Upgrade Dependencies
Lazy evaluate resources from TopLevelResource
Now what is within the callback will only evaluate when the canSee method passes:
TopLevelResource::make ([
'label ' => 'Administration ' ,
'resources ' => function () {
return [
NovaResource::make (Organization::class),
NovaResource::make (User::class),
NovaResource::make (Venue::class),
];
},
])->canSee (fn () => true ),
// array form still supported
v1.2.6
Compare
Sorry, something went wrong.
No results found
Fix regression with hover state introduced on the last version