我正在使用DomPdf和Laravel(thujohn' s包)。我无法呈现html页面。我收到错误:
按零划分
有人可以指导如何解决吗?这是我的代码:
$invoice_name = rand(10000, 9999999) . '_' . time() . rand(100,99999). '.' . 'pdf';
$pdf = new \Thujohn\Pdf\Pdf();
$content = $pdf->load(View::make('FrontEnd.Pages.invoice', compact('order_pass')))->output();
File::put(public_path('/invoice//'.$invoice_name), $content);