diff --git a/README.md b/README.md index eddcfae..fd368bf 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,42 @@ # Novassport -A Laravel Nova tool to manage API Authentication (Passport). \ No newline at end of file +A Laravel Nova tool to manage API Authentication (Passport). + +## Todo : + +- [x] My Apps +- [x] Authorized Apps +- [ ] Personal Access Tokens + +## Installation + +You can install the Nova tool in to a [Laravel](http://laravel.com) app that uses [Nova](http://nova.laravel.com) via composer : + +```cli +composer require kristories/novassport +``` + + +## Usage + +Add the card to your `NovaServiceProvider.php` + + +```php + +use Kristories\Novassport\Novassport; + +// ... + +public function tools() +{ + return [ + // ... + new Novassport(), + ]; +} +``` + +## License + +The MIT License (MIT). \ No newline at end of file