Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tanmuhittin committed Mar 18, 2019
1 parent 5112211 commit 130cd90
Show file tree
Hide file tree
Showing 13 changed files with 15,721 additions and 8 deletions.
8 changes: 2 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
composer.phar
/vendor/

# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock
node_modules/
.idea
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# nova-collapsible-groups
Makes nova core theme navigation collapsible
# Nova Collapsible Groups
Inspired by https://github.com/alexbowers/nova-categorise-resources . Makes nova core theme navigation collapsible using core functionality of resources "$groups". If you have lots of groups you might end up with a long list of resources. You can group them but again it will be a long list. With this package groups are displayed as collapsed menu items. All you need to do is keep using the "$groups".

#Credits
https://github.com/alexbowers
28 changes: 28 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "tanmuhittin/nova-collapsible-groups",
"description": "Makes nova core theme navigation collapsible",
"require": {
"php": ">=7.1.0"
},
"license": "MIT",
"authors": [
{
"name": "Muhittin Tan",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"TanMuhittin\\NovaCollapsibleGroups\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"TanMuhittin\\NovaCollapsibleGroups\\CollapsibleGroupsServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
1 change: 1 addition & 0 deletions dist/js/nova-collapsible-groups.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions dist/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"/js/nova-collapsible-groups.js": "/js/nova-collapsible-groups.js"
}
3 changes: 3 additions & 0 deletions mix-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"/dist/js/nova-collapsible-groups.js": "/dist/js/nova-collapsible-groups.js"
}
Loading

0 comments on commit 130cd90

Please sign in to comment.