Stripe Payment Link plugin screenshot
Dark mode ready
Multilingual support
Supports v5.x

Stripe Payment Link

Action to generate a Stripe Payment Link.

Tags: Form Field Action Forms
Supported versions:
3.x
Andréia Bohner avatar Author: Andréia Bohner

Documentation

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Provides an action to generate a Stripe payment link.

#Installation

You can install the package via composer:

composer require andreia/filament-stripe-payment-link

You can publish the config using:

php artisan vendor:publish --tag="filament-stripe-payment-link-config"

or run the install command:

php artisan andreia/filament-stripe-payment-link:install

This is the contents of the published config file:

return [

    'action' => [
        'icon' => 'heroicon-m-link',
        'requires-confirmation' => false,
    ],

    'payment-link-key-location' => 'services.stripe.payment-link-key',

];

#Requirements

#Setup

#Stripe

On Stripe dashboard, create a restricted API key:

  1. Add a descriptive name for your key on "Key name" field
  2. Add write permission to Products, Prices, and Payment Links
  3. Click on "Create key" button

Stripe Dashboard restricted API key

On the redirected page, in "Restricted keys" section, locate the name of your key. Click to reveal the secret key and copy it. It will be used to connect to Stripe.

#Laravel Project

In your Laravel application, add the following on your config/services.php file:

'stripe' => [
    'payment-link-key' => env('STRIPE_PAYMENT_LINK_KEY')
],

And on your .env file, add the secret key generated on Stripe dashboard:

STRIPE_PAYMENT_LINK_KEY="your key here"

#Usage

Add the Stripe payment link action to a Filament form input field:

use Andreia\FilamentStripePaymentLink\GenerateStripeLinkAction;

public static function form(Form $form): Form
{
    return $form
        ->schema([
            TextInput::make('stripe_payment_link')
                ->required()
                ->suffixAction(GenerateStripeLinkAction::make('stripe_payment_link')),
        ]);
}

This is how the action will look like:

Form field with Stripe Payment link action

When the user clicks on the link icon, a modal will be shown with the product name, amount, and currency fields:

Modal with required fields to generate Stripe payment link

After filling the form data and submitting, the payment link will be added to the form field:

Stripe payment link

#Testing

composer test

#Changelog

Please see CHANGELOG for more information on what has changed recently.

#Contributing

Please see CONTRIBUTING for details.

#Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

#Credits

#License

The MIT License (MIT). Please see License File for more information.