На информационной панели в разделе belling-> products создайте новый продукт, например prod-1, добавьте тарифный план, например plan-1 (stripe создаст ID для этого плана) к этому продукту (prod-1), добавив тарифный план под биллинговой интервал выберите или настройте нужный интервал.
Теперь давайте работать на стороне приложения Laravel. Я рекомендую использовать Laravel Cashier.
Запустить Composer composer require laravel/cashier
Обновите таблицу миграции USER:
Schema::table('users', function ($table) {
$table->string('stripe_id')->nullable()->collation('utf8mb4_bin');
$table->string('card_brand')->nullable();
$table->string('card_last_four', 4)->nullable();
$table->timestamp('trial_ends_at')->nullable();
});
Schema::create('subscriptions', function ($table) {
$table->increments('id');
$table->unsignedInteger('user_id');
$table->string('name');
$table->string('stripe_id')->collation('utf8mb4_bin');
$table->string('stripe_plan');
$table->integer('quantity');
$table->timestamp('trial_ends_at')->nullable();
$table->timestamp('ends_at')->nullable();
$table->timestamps();
});
Обновить модель пользователя:
use Laravel\Cashier\Billable;
class User extends Authenticatable
{
use Billable;
}
В вашем контроллере ex. MyController.php:
use Cartalyst\Stripe\Laravel\Facades\Stripe;
use Cartalyst\Stripe\Exception\CardErrorException;
use Session;
use Auth;
public function store(Request $request)
{
$token = $_POST['stripeToken'];
$user = Auth::user();
try {
$user->newSubscription('prod-1', 'ID of plan-1')->create($token);
Session::flash('success', 'You are now a premium member');
return redirect()->back();
} catch (CardErrorException $e) {
return back()->withErrors('Error!'. $e->getMessage());
}
}
На ваш взгляд:
<form action="{{ route('subscribe')}}" method="POST">
<script
src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key="pk_test_0000000000000000000" // Your api key
data-image="/images/marketplace.png" // You can change this image to your image
data-name="My App Name"
data-description="Subscription for 1 weekly box"
data-amount="2000" //the price is in cents 2000 = 20.00
data-label="Sign Me Up!">
</script>
</form>
Создать маршрут:
Route::POST('subscription', 'MyController@store')->name('susbcribe');
Дайте мне знать, если это работает.