22 lines
498 B
PHP
22 lines
498 B
PHP
<?php
|
|
|
|
namespace App\Models\Payments;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
final class GcPaymentAttempt extends Model
|
|
{
|
|
protected $table = 'gc_payment_attempts';
|
|
|
|
protected $casts = [
|
|
'request_payload' => 'array',
|
|
'response_payload' => 'array',
|
|
'return_payload' => 'array',
|
|
'noti_payload' => 'array',
|
|
'ready_at' => 'datetime',
|
|
'redirected_at' => 'datetime',
|
|
'returned_at' => 'datetime',
|
|
'noti_at' => 'datetime',
|
|
];
|
|
}
|