App\Ninja\Presenters\ProductPresenter::skypeBot PHP Méthode

skypeBot() public méthode

public skypeBot ( $account )
    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;
    }
ProductPresenter