print.blade.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Print Table</title>
  5. <meta charset="UTF-8">
  6. <meta name=description content="">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <!-- Bootstrap CSS -->
  9. <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
  10. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
  11. <style>
  12. body {margin: 20px}
  13. </style>
  14. </head>
  15. <body>
  16. <table class="table table-bordered table-condensed table-striped">
  17. @foreach($data as $row)
  18. @if ($loop->first)
  19. <tr>
  20. @foreach($row as $key => $value)
  21. <th>{!! $key !!}</th>
  22. @endforeach
  23. </tr>
  24. @endif
  25. <tr>
  26. @foreach($row as $key => $value)
  27. @if(is_string($value) || is_numeric($value))
  28. <td>{!! $value !!}</td>
  29. @else
  30. <td></td>
  31. @endif
  32. @endforeach
  33. </tr>
  34. @endforeach
  35. </table>
  36. </body>
  37. </html>