You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
1.7 KiB

2 years ago
  1. <table>
  2. <tr>
  3. <th colspan="2">System information</th>
  4. </tr>
  5. <tr>
  6. <th>Item</th>
  7. <th>Value</th>
  8. </tr>
  9. <tr>
  10. <td>Version</td>
  11. <td>{{ config('importer.version') }}</td>
  12. </tr>
  13. @if($system['is_docker'])
  14. <tr>
  15. <td>Build</td>
  16. <td><span>#</span>{{ $system['build'] }}, base <span>#</span>{{ $system['base_build'] }}</td>
  17. </tr>
  18. @endif
  19. <tr>
  20. <td>System</td>
  21. <td>PHP {{ $system['php_version'] }}, {{ $system['php_os'] }}, {{ $system['interface'] }}</td>
  22. </tr>
  23. </table>
  24. <table>
  25. <tr>
  26. <th colspan="2">App information</th>
  27. </tr>
  28. <tr>
  29. <th>Item</th>
  30. <th>Value</th>
  31. </tr>
  32. <tr>
  33. <td>Timezone</td>
  34. <td>{{ config('app.timezone') }}, [BrowserTZ]</td>
  35. </tr>
  36. <tr>
  37. <td>Environment</td>
  38. <td>{{ config('app.env') }}</td>
  39. </tr>
  40. <tr>
  41. <td>Debug mode</td>
  42. <td>{{ $app['debug'] }}, cache '{{ config('cache.default') }}'</td>
  43. </tr>
  44. <tr>
  45. <td>Log level</td>
  46. <td>{{ config('logging.level') }}, {{ config('logging.default') }}</td>
  47. </tr>
  48. <tr>
  49. <td>Display errors</td>
  50. <td>{{ $app['display_errors'] }}, {{ $app['reporting'] }}</td>
  51. </tr>
  52. <tr>
  53. <td>BCscale</td>
  54. <td>{{ $app['bcscale'] }}</td>
  55. </tr>
  56. <tr>
  57. <td>Trusted proxies</td>
  58. <td>{{ config('importer.trusted_proxies') }}</td>
  59. </tr>
  60. </table>
  61. <table>
  62. <tr>
  63. <th colspan="2">User information</th>
  64. </tr>
  65. <tr>
  66. <th>Item</th>
  67. <th>Value</th>
  68. </tr>
  69. <tr>
  70. <td>
  71. User agent
  72. </td>
  73. <td>
  74. {{ $user['user_agent'] }}
  75. </td>
  76. </tr>
  77. </table>