Наследование: implements Eduardokum\LaravelBoleto\Contracts\Boleto\Render\Html
Пример #1
0
 /**
  * Render HTML
  *
  * @return string
  * @throws \Exception
  */
 public function renderHTML()
 {
     $html = new Html($this->toArray());
     return $html->gerarBoleto();
 }
Пример #2
0
 /**
  * Render HTML
  *
  * @param bool   $print
  *
  * @return string
  * @throws \Exception
  */
 public function renderHTML($print = false)
 {
     $html = new Html($this->toArray());
     return $html->gerarBoleto($print);
 }