A tool for keeping thoughts, ideas and drafts within the admin
Install the package in to a Laravel app that uses Nova via composer:
composer require itainathaniel/nova-admin-notes
Next, register the tool with Nova. This is done in the tools
method of the App\Providers\NovaServiceProvider
.
// in app/Providers/NovaServiceProvider.php
// ...
public function tools()
{
return [
// ...
new \Itainathaniel\AdminNotes\AdminNotes(),
];
}
If you discover any security related issues, please email [email protected] or use the issue tracker.
The MIT License (MIT). Please see License File for more information.