I need to implement card convert the html and php into pdf. This card section have different fonts. I'm using google fonts for card.
but no any changes in pdf
code:
$pdf = PDF::loadView('downloadflyerpreview');
$pdf->setOptions(['dpi'=>300,'isHtml5ParserEnabled', true,'isRemoteEnabled' => true,'defaultMediaType'=>'all','isFontSubsettingEnabled'=> true,'defaultFont' => '']);
$pdf->setPaper('A4', 'portrait');
return $pdf->download('flyerpreview.pdf');
return view('downloadflyerpreview',compact('goto'));