随着电子商务的不断发展,订阅付款模式越来越受欢迎。laravel cashier是一个基于laravel框架的付款工具,它使得管理订阅和收取付款变得非常简单。 本文将介绍如何在laravel应用程序中使用laravel cashier以及authorize.net来处理订阅付款。
安装Laravel Cashier在开始之前,需要确保你已经安装了Laravel框架和Composer包管理器。在终端输入以下命令来安装Laravel Cashier:
1
composer require laravel/cashier
一旦它安装成功,你需要为Cashier生成迁移表。可以在终端运行以下命令:
1
php artisan migrate
这将为付款相关的Cashier表生成所需的数据库迁移文件。
配置Authorize.net API在使用Authorize.net处理付款之前,需要安装该服务并获取API凭据(API Login ID和Transaction Key)。
前往https://www.authorize.net/注册一个账号 登录后,在左侧菜单中选择“Account”,再选择“Settings” 在“Security Settings”中,选择“API Credentials & Keys” 点击“New Transaction Key”,输入需要的信息,再点击“Submit” 在弹出窗口中会显示API Login ID和Transaction Key。请务必复制并妥善保管。 配置Laravel Cashier在开始之前,需要配置cashier.php文件中的参数。可以通过以下命令在config文件夹中创建该文件:
1
php artisan vendor:publish --tag="cashier-config"
接下来,需要在.env文件中设置Authorize.net API相关参数:
1
2
3
4
CASHIER_ENV=production
CASHIER_CURRENCY=usd
AUTHORIZE_API_LOGIN_ID=YOUR_API_LOGIN_ID
AUTHORIZE_TRANSACTION_KEY=YOUR_TRANSACTION_KEY
在使用Laravel Cashier和Authorize.net处理订阅付款之前,需要创建订阅计划。可以通过以下命令来创建订阅计划:
1
php artisan make:model Plan -m
该命令将在app文件夹中创建一个Plan模型,并为其生成迁移表。现在可以打开迁移文件进行编辑,并添加必要的字段。以下是一个可以参考的示例:
1
2
3
4
5
6
7
8
9
10
11
Schema::create(plans, function (Blueprint $table) {
$table->bigIncrements(id);
$table->string(name);
$table->string(stripe_id);
$table->string(authorizenet_id);
$table->integer(price);
$table->string(interval);
$table->integer(interval_count);
$table->integer(trial_period_days)->nullable();
$table->timestamps();
});
执行完迁移文件后,需要在数据库中创建该表。在终端中运行以下命令:
1
php artisan migrate
接下来,需要在Plan模型中定义必要的属性和方法。以下是一个示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use LaravelCashierSubscription;
class Plan extends Model
{
public function subscriptions()
{
return $this->hasMany(Subscription::class);
}
public function getPrice()
{
return $this->price / 100;
}
public function getFormattedPrice()
{
return number_format($this->getPrice(), 2);
}
public function authorizeNetPlan()
{
return AuthorizeNet_Subscription::create([
name => $this->name,
intervalLength => $this->interval_count,
intervalUnit => $this->interval,
startDate => date(Y-m-d),
totalOccurrences => 9999,
trialOccurrences => 0,
amount => $this->price,
trialAmount => 0.00,
creditCardCardNumber => ,
creditCardExpirationDate => ,
creditCardCardCode =>
]);
}
}
authorizeNetPlan方法将创建Authorize.net订阅计划并返回相关的信息。
处理订阅付款一旦订阅计划已经创建,现在就可以向订阅者发送订阅链接。接下来,订阅者可以使用Link点击链接进行订阅付款。
在创建订阅时,需要设置订阅计划和用户相关信息。
以下是一个示例控制器方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
public function subscribe(Request $request, Plan $plan)
{
$user = $request->user();
$subscription = $user->newSubscription(default, $plan->stripe_id)->create($request->stripeToken);
$authorizeSubscription = $plan->authorizeNetPlan();
$subscription->authorize_net_id = $authorizeSubscription->getSubscriptionId();
$subscription->save();
return redirect()->route(home)->with(success, Subscription successful);
}
在该示例中,我们使用newSubscription方法为用户创建新的订阅。注意,$request->stripeToken是使用Stripe Checkout生成的令牌。getUserPlan方法在Plan模型中定义,用于获取当前用户的订阅计划。
在创建订阅后,我们将创建的Authorize.net订阅计划的ID保存到Subscription模型中。
处理取消订阅当用户想要取消订阅时,需要执行以下操作:
1
2
3
4
5
6
7
8
9
10
11
12
public function cancel(Request $request)
{
$user = $request->user();
$subscription = $user->subscription(default);
$authorizeSubscription = AuthorizeNet_Subscription::cancel($subscription->authorize_net_id);
$subscription->cancel();
return redirect()->route(home)->with(success, Subscription cancelled.);
}
在该示例中,我们使用cancel方法取消用户的Laravel Cashier订阅计划,并使用Authorize.net中提供的方法取消订阅计划。
总结
使用Laravel Cashier和Authorize.net处理订阅付款非常简单。仅需按照以上步骤即可快速设置和实现。Laravel Cashier提供了便捷的付款工具,何不实现这样一种新模式,以满足日益变化的市场需求呢?
以上就是Laravel开发:如何使用Laravel Cashier和Authorize.net处理订阅付款?的详细内容,更多请关注php中文网其它相关文章!