-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b64493
commit 7beacf6
Showing
1 changed file
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,42 @@ | ||
# Novassport | ||
|
||
A Laravel Nova tool to manage API Authentication (Passport). | ||
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). |