exception.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Laravel - <?php echo $severity; ?></title>
  6. <link href="http://fonts.googleapis.com/css?family=Quattrocento&amp;v1" rel="stylesheet" type="text/css" media="all" />
  7. <link href="http://fonts.googleapis.com/css?family=Ubuntu&amp;v1" rel="stylesheet" type="text/css" media="all" />
  8. <link href='http://fonts.googleapis.com/css?family=Lobster+Two' rel='stylesheet' type='text/css'>
  9. <style type="text/css">
  10. body {
  11. background-color: #eee;
  12. color: #6d6d6d;
  13. font-family: 'Ubuntu';
  14. font-size: 15px;
  15. }
  16. h1.laravel {
  17. font-family: 'Lobster Two', Helvetica, serif;
  18. font-size: 60px;
  19. margin: 0 0 15px -10px;
  20. padding: 0;
  21. text-shadow: -1px 1px 1px #fff;
  22. }
  23. h2 {
  24. font-family: 'Quattrocento', serif;
  25. font-size: 30px;
  26. margin: 30px 0 0 0;
  27. padding: 0;
  28. text-shadow: -1px 1px 1px #fff;
  29. }
  30. p {
  31. margin: 10px 0 0 0;
  32. line-height: 25px;
  33. }
  34. pre {
  35. font-size: 12px;
  36. }
  37. pre.context {
  38. margin: 0; padding: 0;
  39. }
  40. pre.highlight {
  41. font-weight: bold;
  42. color: #990000;
  43. }
  44. #header {
  45. margin: 0 auto;
  46. margin-bottom: 15px;
  47. margin-top: 20px;
  48. width: 80%;
  49. }
  50. #wrapper {
  51. background-color: #fff;
  52. border-radius: 10px;
  53. margin: 0 auto;
  54. padding: 10px;
  55. width: 80%;
  56. }
  57. #wrapper h2:first-of-type {
  58. margin-top: 0;
  59. }
  60. </style>
  61. </head>
  62. <body>
  63. <div id="header">
  64. <h1 class="laravel"><?php echo $severity; ?></h1>
  65. </div>
  66. <div id="wrapper">
  67. <h2>Message:</h2>
  68. <p><?php echo $message; ?></p>
  69. <h2>Stack Trace:</h2>
  70. <pre><?php echo $trace; ?></pre>
  71. <h2>Snapshot:</h2>
  72. <p>
  73. <?php if (count($contexts) > 0): ?>
  74. <?php foreach($contexts as $num => $context): ?>
  75. <pre class="context <?php echo ($line == $num) ? 'highlight' : ''; ?>"><?php echo htmlentities($num.': '.$context); ?></pre>
  76. <?php endforeach; ?>
  77. <?php else: ?>
  78. Snapshot Unavailable.
  79. <?php endif; ?>
  80. </p>
  81. </div>
  82. </body>
  83. </html>