2015-11-12 21:36:28 +01:00
|
|
|
<?php namespace App\Ninja\Presenters;
|
|
|
|
|
|
|
|
use Utils;
|
|
|
|
|
2016-05-23 11:26:08 +02:00
|
|
|
class PaymentPresenter extends EntityPresenter {
|
2015-11-12 21:36:28 +01:00
|
|
|
|
|
|
|
public function client()
|
|
|
|
{
|
|
|
|
return $this->entity->client ? $this->entity->client->getDisplayName() : '';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function payment_date()
|
|
|
|
{
|
|
|
|
return Utils::fromSqlDate($this->entity->payment_date);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function method()
|
|
|
|
{
|
|
|
|
if ($this->entity->account_gateway) {
|
|
|
|
return $this->entity->account_gateway->gateway->name;
|
|
|
|
} elseif ($this->entity->payment_type) {
|
|
|
|
return $this->entity->payment_type->name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-23 11:26:08 +02:00
|
|
|
}
|