brandonjbegle / nova-profile-tool
A tool for Laravel Nova to allow users to edit their profile data
v0.1.0
2023-11-20 13:23 UTC
Requires
- php: >=7.1.0
Requires (Dev)
- orchestra/testbench: ^3.6
- phpunit/phpunit: 7.1
This package is auto-updated.
Last update: 2025-03-29 00:54:17 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 runlinenl/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 \BrandonJBegle\ProfileTool\ProfileTool, ]; }
Usage
Click on the "Profile" menu item in your Nova app to see the tool provided by this package.
Testing
composer test
Credits
License
The MIT License (MIT). Please see License File for more information.