Dompdf LoadView变量传递

时间:2018-11-29 12:35:01

标签: laravel-5

我无法加载能够将参数传递给dompdf函数LoadView的功能。

这是我的控制器:

  public function pst_affluiti(){

    $data=DB::all('Anagrafica')->get();
    $pdf = PDF::loadView('output',['data' => $data]);
  return $pdf->stream('output.pdf');
  }

我的output.blade.php

<body>
 <div class="container">
<table class="table table-sm table-bordered" >
  <thead>
    <tr>
      <th scope="col-sm-1 col-6">Data Affl.</th>
      <th scope="col-sm-2">Cron.</th>
      <th scope="col-sm-2">Cognome</th>
      <th scope="col-sm-2">Nome</th>
      <th scope="col-sm-2">Data nac.</th>
    </tr>   
  </thead>
 <tbody>
        @foreach($data as $row)
            <tr>
               <td>{{$row->Cron}}</td>
               <td>{{$row->Surname}}</td>
               <td>{{$row->Name}}</td>
               <td>{{$row->Date}}</td>
            </tr>
           @endforeach 
         </tbody>
</table>
</div>
</body>

如果我加载查询的普通视图,则效果很好。

有什么建议吗? 预先感谢

1 个答案:

答案 0 :(得分:0)

您可以使用

  

compact('data')

代替

  

$ data