mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-07 21:53:32 -05:00
17 lines
307 B
PHP
Executable File
17 lines
307 B
PHP
Executable File
<?php
|
|
|
|
class Gateway extends Eloquent
|
|
{
|
|
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';
|
|
}
|
|
} |