CanGelis\L4pdf\PDF::download PHP Method

download() public method

Get the PDF Content as an attachment
public download ( string $as = null ) : Illuminate\Http\Response
$as string
return Illuminate\Http\Response
    public function download($as = null)
    {
        return $this->createResponse()->header('Content-Disposition', 'attachment; ' . $this->getAs($as));
    }