mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 14:42:42 +01:00
21 lines
423 B
PHP
21 lines
423 B
PHP
|
<?php namespace App\Ninja\Presenters;
|
||
|
|
||
|
use App\Libraries\Skype\HeroCard;
|
||
|
|
||
|
class ProductPresenter extends EntityPresenter
|
||
|
{
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
}
|