4737838021
- T5.1 PaymentGatewayInterface, DTOs, PaymentMethod/PaymentStatus/RefundStatus enums - T5.2 payments/refunds tables, models, factories - T5.3-T5.5 KbzMiniAppGateway: initiate()/verify()/refund(), ported KBZ signing scheme, wired refund_amount through for partial refunds, mTLS options for refund - T5.6 PaymentGatewayFactory resolving gateways by PaymentMethod - T5.7 PaymentService orchestrator delegating to the resolved gateway
55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Modules\Payment\Database\Factories;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
use Illuminate\Support\Str;
|
|
use Modules\Booking\Models\Booking;
|
|
use Modules\Payment\Enums\PaymentMethod;
|
|
use Modules\Payment\Enums\PaymentStatus;
|
|
use Modules\Payment\Models\Payment;
|
|
|
|
/**
|
|
* @extends Factory<Payment>
|
|
*/
|
|
class PaymentFactory extends Factory
|
|
{
|
|
protected $model = Payment::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'booking_id' => Booking::factory(),
|
|
'gateway' => PaymentMethod::KbzMiniApp,
|
|
'status' => PaymentStatus::Pending,
|
|
'amount' => $this->faker->randomFloat(2, 5000, 50000),
|
|
'currency' => 'MMK',
|
|
'gateway_transaction_id' => Str::uuid()->toString(),
|
|
'gateway_payload' => null,
|
|
'initiated_at' => now(),
|
|
'completed_at' => null,
|
|
];
|
|
}
|
|
|
|
public function completed(): static
|
|
{
|
|
return $this->state(fn (array $attributes): array => [
|
|
'status' => PaymentStatus::Completed,
|
|
'completed_at' => now(),
|
|
]);
|
|
}
|
|
|
|
public function failed(): static
|
|
{
|
|
return $this->state(fn (array $attributes): array => [
|
|
'status' => PaymentStatus::Failed,
|
|
'completed_at' => now(),
|
|
]);
|
|
}
|
|
}
|