diimolabs / nova-profile-tool
A tool for Laravel Nova to allow users to edit their profile data
Requires
- php: >=7.1.0
Requires (Dev)
- orchestra/testbench: ^3.6
- phpunit/phpunit: 7.1
- dev-master
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.1
- 1.0.0
- dev-dependabot/npm_and_yarn/minimist-1.2.6
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/follow-redirects-1.14.8
- dev-dependabot/npm_and_yarn/chownr-1.1.4
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/y18n-3.2.2
- dev-dependabot/npm_and_yarn/ini-1.3.8
- dev-dependabot/npm_and_yarn/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/http-proxy-1.18.1
This package is not auto-updated.
Last update: 2024-11-07 11:35:20 UTC
README
When this tool is added to Nova, you can let users update their profile data without giving them access to the full User resource under 'Resources'.
Installation
You can install the package in to a Laravel app that uses Nova via composer:
composer require diimolabs/nova-profile-tool
Next up, you must register the tool with Nova. This is typically done in the tools
method of the NovaServiceProvider
.
// in app/Providers/NovaServiceProvider.php // ... public function tools() { return [ // ... new \diimolabs\ProfileTool\ProfileTool, ]; }
Usage
Click on the "Profile" menu item in your Nova app to see the tool provided by this package.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email patrick@diimolabs.nl instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.