1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00
invoiceninja/app/models/Gateway.php

17 lines
307 B
PHP
Raw Normal View History

2013-11-26 13:45:07 +01:00
<?php
class Gateway extends Eloquent
{
2014-01-08 21:09:47 +01:00
public $timestamps = false;
protected $softDelete = false;
public function paymentlibrary()
{
return $this->belongsTo('PaymentLibrary', 'payment_library_id');
}
public function getLogoUrl()
{
return '/images/gateways/logo_'.$this->provider.'.png';
}
2013-11-26 13:45:07 +01:00
}