1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 15:13:29 +01:00
invoiceninja/app/Ninja/Presenters/PaymentPresenter.php
2017-01-30 18:05:31 +02:00

37 lines
901 B
PHP

<?php namespace App\Ninja\Presenters;
use Carbon;
use Utils;
class PaymentPresenter extends EntityPresenter
{
public function amount()
{
return Utils::formatMoney($this->entity->amount, $this->entity->client->currency_id);
}
public function client()
{
return $this->entity->client ? $this->entity->client->getDisplayName() : '';
}
public function payment_date()
{
return Utils::fromSqlDate($this->entity->payment_date);
}
public function month()
{
return Carbon::parse($this->entity->payment_date)->format('Y m');
}
public function method()
{
if ($this->entity->account_gateway) {
return $this->entity->account_gateway->gateway->name;
} elseif ($this->entity->payment_type) {
return trans('texts.payment_type_' . $this->entity->payment_type->name);
}
}
}