From 7beacf6b1f8dcdf3f6594049b40c654ad0ae4fb0 Mon Sep 17 00:00:00 2001 From: Wahyu Kristianto Date: Wed, 26 Sep 2018 03:04:13 +0700 Subject: [PATCH] Update readme --- README.md | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) 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