You can install the package via composer:
composer require ninjaparade/stripe-dataYou can publish and run the migrations with:
php artisan vendor:publish --tag="stripe-data-migrations"
php artisan migrateMake sure your stripe environment variables are set, the env vars expected are as follows
env('STRIPE_KEY'),
env('STRIPE_SECRET'),
env('STRIPE_WEBHOOK_SECRET'),
env('STRIPE_API_VERSION', '2023-09-21'),
env('STRIPE_API_BASE', 'https://api.stripe.com'),You can publish the config file with:
php artisan vendor:publish --tag="stripe-data-config"This is the contents of the published config file:
return [
];Optionally, you can publish the views using
php artisan vendor:publish --tag="stripe-data-views"return Redirect::to('https://www.youtube.com/watch?v=dQw4w9WgXcQ');composer testPlease see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.