print.blade.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. @php ($flag = true)
  18. @foreach($data as $row)
  19. @if ($row == reset($data) && $flag)
  20. <tr>
  21. @foreach($row as $key => $value)
  22. <th>{!! $key !!}</th>
  23. @endforeach
  24. @php ($flag = false)
  25. </tr>
  26. @endif
  27. <tr>
  28. @foreach($row as $key => $value)
  29. @if(is_string($value) || is_numeric($value))
  30. <td>{!! $value !!}</td>
  31. @else
  32. <td></td>
  33. @endif
  34. @endforeach
  35. </tr>
  36. @endforeach
  37. </table>
  38. </body>
  39. </html>