invoiceninja/app/Models/GatewayType.php

45 lines
848 B
PHP
Raw Normal View History

2019-08-22 10:25:30 +10:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models;
use App\Models\Gateway;
use Illuminate\Database\Eloquent\Model;
class GatewayType extends StaticModel
2019-08-22 10:25:30 +10:00
{
2019-09-08 22:13:55 +10:00
public $timestamps = false;
2019-08-22 10:25:30 +10:00
2019-09-08 22:13:55 +10:00
const CREDIT_CARD = 1;
const BANK_TRANSFER = 2;
const PAYPAL = 3;
const CRYPTO = 4;
2019-09-08 22:13:55 +10:00
const DWOLLA = 5;
const CUSTOM1 = 6;
const ALIPAY = 7;
const SOFORT = 8;
const SEPA = 9;
const GOCARDLESS = 10;
const APPLE_PAY = 11;
const CUSTOM2 = 12;
const CUSTOM3 = 13;
2019-09-09 12:19:19 +10:00
const TOKEN = 'token';
2019-09-08 22:13:55 +10:00
2019-08-22 10:25:30 +10:00
public function gateway()
{
return $this->belongsTo(Gateway::class);
}
2019-09-08 22:13:55 +10:00
2019-08-22 10:25:30 +10:00
}