tighten / nova-stripe by mattstauffer

A tool to create a quick Stripe dashboard in your Laravel Nova admin panels
240,474
104
14
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-04-18 15:03:45
Package Statistics
Total Downloads: 240,474
Monthly Downloads: 5,976
Daily Downloads: 229
Total Stars: 104
Total Watchers: 14
Total Forks: 20
Total Open Issues: 9

Laravel Nova Stripe Dashboard

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!

Dashboard index page

Charge detail page

Installation Instructions

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,
    ];
}

Alpha To-Dos

Charges Index

  • [X] Improve balance card design
  • [ ] Add ability to filter by livemode
  • [ ] Add ability to filter by status
  • [ ] Add ability to sort fields
  • [ ] Add perPage dropdown
  • [ ] Add ability to search charges

Charge Detail

  • [X] Calculate Stripe processing fee / net amount
  • [ ] Add "Refund" button
  • [X] Better handling of booleans (green dot like regular Nova Boolean)
  • [ ] Labels for statuses
  • [ ] Handle Metadata more like a Textarea field
  • [X] Refactor to use existing Nova fields instead of a bespoke one

Customers

  • [ ] Add an index of customers
  • [ ] Add a customer detail page

General Housekeeping

  • [ ] Add some PHPUnit tests
  • [ ] Add some Dusk tests
  • [X] Better handling of currency symbols
  • [ ] Break navbar item into any applicable sub-items (Charges, Customers, etc.)

Possible Beta To-Dos

  • [ ] Add some pretty graphs showing earnings
  • [ ] Investigate creating pseudo-resources (not relying on actual Laravel models) in order to use less custom/hard-coded code
  • [ ] Add ability to update charge
  • [ ] Add Payout information
  • [ ] Add Stripe Connect account management
  • [ ] Build cards / resource tools that can be used in Nova resources (User / Transaction / etc.?)
  • [ ] Better integration with Cashier