Eduardokum\LaravelBoleto\Boleto\AbstractBoleto::renderPDF PHP Method

renderPDF() public method

Render PDF
public renderPDF ( boolean $print = false ) : string
$print boolean
return string
    public function renderPDF($print = false)
    {
        $pdf = new Pdf();
        $pdf->addBoleto($this);
        return $pdf->gerarBoleto('S', null, $print);
    }