Skip to content

Instantly share code, notes, and snippets.

View DarkcoderSe's full-sized avatar
:octocat:
Focusing

Dark Coder DarkcoderSe

:octocat:
Focusing
View GitHub Profile
@DarkcoderSe
DarkcoderSe / Payment.php
Last active January 1, 2021 06:30 — forked from Miri92/Payment.php
KapitalBank Payment API with PHP Laravel framework - Example snippet
<?php
namespace App\Models;
use App\Database\EloquentModel as Model;
class Payment extends Model
{
protected $fillable = ['order_id', 'session_id', 'currency', 'order_status', 'order_description', 'amount', 'payment_url', 'status_code','order_check_status','language_code'];