1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Ninja/Presenters/ProductPresenter.php
2017-01-30 21:40:43 +02:00

26 lines
516 B
PHP

<?php
namespace App\Ninja\Presenters;
use App\Libraries\Skype\HeroCard;
class ProductPresenter extends EntityPresenter
{
public function user()
{
return $this->entity->user->getDisplayName();
}
public function skypeBot($account)
{
$product = $this->entity;
$card = new HeroCard();
$card->setTitle($product->product_key);
$card->setSubitle($account->formatMoney($product->cost));
$card->setText($product->notes);
return $card;
}
}