Jenderal92

Untitled

Oct 1st, 2022
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <div class="row">
  2. <a href="{{ route('htmltopdfview',['download'=>'pdf']) }}">Download PDF</a>
  3. <table>
  4. <tr>
  5. <th>Name</th>
  6. <th>Details</th>
  7. </tr>
  8. @foreach ($products as $product)
  9. <tr>
  10. <td>{{ $product->name }}</td>
  11. <td>{{ $product->details }}</td>
  12. </tr>
  13. @endforeach
  14. </table>
  15. </div>
Advertisement
Add Comment
Please, Sign In to add comment