Package Data | |
---|---|
Maintainer Username: | mattstauffer |
Maintainer Contact: | samantha@tighten.co (Samantha Geitz) |
Package Create Date: | 2018-08-28 |
Package Last Update: | 2024-03-12 |
Language: | JavaScript |
License: | MIT |
Last Refreshed: | 2024-11-15 15:00:22 |
Package Statistics | |
---|---|
Total Downloads: | 262,137 |
Monthly Downloads: | 3,160 |
Daily Downloads: | 75 |
Total Stars: | 104 |
Total Watchers: | 14 |
Total Forks: | 20 |
Total Open Issues: | 8 |
This package makes it easy to see high-level information about your application's Stripe balance and charges in a Nova dashboard.
Looking to manage your users' Stripe subscriptions with Laravel Cashier? Check out Nova Cashier Manager.
This package is in alpha and under very active development, but check out the to-do section below for features we plan to add soon!
Install via Composer:
$ composer require tightenco/nova-stripe
If you have not already done so, in your config/services.php
file, set up your Stripe key/secret:
'stripe' => [
'key' => env('STRIPE_KEY'),
'secret' => env('STRIPE_SECRET'),
],
and add these values to your .env
file:
STRIPE_KEY=
STRIPE_SECRET=
From there, you can register your tools in app/Providers/NovaServiceProvider
:
public function tools()
{
return [
new \Tightenco\NovaStripe\NovaStripe,
];
}