This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use laravel nova actions instead of getting new ones
- Loading branch information
1 parent
795942b
commit 953a312
Showing
9 changed files
with
91 additions
and
171 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,9 @@ | ||
Nova.booting((app, store) => { | ||
app.component( | ||
"ActionButton", | ||
require("./components/ActionButton.vue").default | ||
); | ||
app.component("ActionLink", require("./components/ActionLink.vue").default); | ||
app.component( | ||
"InvisibleActions", | ||
require("./components/InvisibleActions.vue").default | ||
); | ||
app.component( | ||
"DetailActions", | ||
require("./components/DetailActions.vue").default | ||
); | ||
app.component( | ||
"IndexActions", | ||
require("./components/IndexActions.vue").default | ||
); | ||
|
||
app.component( | ||
"ResourceDetail", | ||
require("./nova-components/ResourceDetail.vue").default | ||
); | ||
|
||
app.component( | ||
"ResourceTableToolbar", | ||
require("./nova-components/ResourceTableToolbar.vue").default | ||
); | ||
app.component("InvisibleActionsDropdown", require("./components/InvisibleActionsDropdown.vue").default); | ||
app.component("ActionButton", require("./components/ActionButton.vue").default); | ||
app.component("ActionButtonGroup", require("./components/ActionButtonGroup.vue").default); | ||
|
||
app.component("ResourceDetail", require("./nova-components/ResourceDetail.vue").default); | ||
app.component("ResourceTableToolbar", require("./nova-components/ResourceTableToolbar.vue").default); | ||
}); |
Oops, something went wrong.