Online payment

This commit is contained in:
2024-10-14 20:35:30 +05:00
parent b17357d53f
commit 94cc0e2d19
4 changed files with 76 additions and 26 deletions

View File

@@ -17,30 +17,9 @@ class OnlinePaymentHistory extends Model
protected $table = 'online_payment_histories';
/**
* The attributes that are mass assignable.
* Guarded attributes
*
* @var array<int, string>
* @var array
*/
protected $fillable = [
'refunded_amount',
'booking_number',
'amount',
'depositedAmount',
'orderNumber',
'description',
'orderId',
'cardholderName',
'pan',
'approvalCode',
'expiration',
'formUrl',
'successUrl',
'errorUrl',
'api_client',
'paymentStatus',
'callbackStatus',
'username',
'online_paymantable_id',
'online_paymantable_type',
];
protected $guarded = [];
}