Improved error exception view.
This commit is contained in:
parent
54311a41ce
commit
4fc4d04028
|
@ -2,64 +2,101 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Laravel - Error</title>
|
||||
<title>Laravel - <?php echo $severity; ?></title>
|
||||
|
||||
<link href='http://fonts.googleapis.com/css?family=Ubuntu&subset=latin' rel='stylesheet' type='text/css'>
|
||||
<link href="http://fonts.googleapis.com/css?family=Quattrocento&v1" rel="stylesheet" type="text/css" media="all" />
|
||||
<link href="http://fonts.googleapis.com/css?family=Ubuntu&v1" rel="stylesheet" type="text/css" media="all" />
|
||||
<link href="http://fonts.googleapis.com/css?family=Lobster+Two&v1" rel="stylesheet" type="text/css" media="all" />
|
||||
|
||||
<style type="text/css">
|
||||
body {
|
||||
background-color: #fff;
|
||||
font-family: 'Ubuntu', sans-serif;
|
||||
font-size: 18px;
|
||||
color: #3f3f3f;
|
||||
padding: 10px;
|
||||
background-color: #eee;
|
||||
color: #6d6d6d;
|
||||
font-family: 'Ubuntu';
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-family: 'Ubuntu', sans-serif;
|
||||
font-size: 45px;
|
||||
color: #6d6d6d;
|
||||
margin: 0 0 10px 0;
|
||||
text-shadow: 1px 1px #000;
|
||||
h1.laravel {
|
||||
font-family: 'Lobster Two', Helvetica, serif;
|
||||
font-size: 60px;
|
||||
margin: 0 0 15px -10px;
|
||||
padding: 0;
|
||||
text-shadow: -1px 1px 1px #fff;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #6d6d6d;
|
||||
margin: 0 0 10px 0;
|
||||
h2 {
|
||||
font-family: 'Quattrocento', serif;
|
||||
font-size: 30px;
|
||||
margin: 30px 0 0 0;
|
||||
padding: 0;
|
||||
text-shadow: -1px 1px 1px #fff;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 10px 0 0 0;
|
||||
line-height: 25px;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-size: 14px;
|
||||
margin: 0 0 0 0;
|
||||
padding: 0 0 0 0;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
pre.context {
|
||||
margin: 0; padding: 0;
|
||||
}
|
||||
|
||||
.strong {
|
||||
font-weight: bold;
|
||||
color: #990000;
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
width: 100%;
|
||||
background-color: #fff;
|
||||
border-radius: 10px;
|
||||
margin: 0 auto;
|
||||
padding: 10px;
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
div.content {
|
||||
padding: 10px 10px 10px 10px;
|
||||
background-color: #eee;
|
||||
border-radius: 10px;
|
||||
margin-bottom: 10px;
|
||||
#wrapper h2:first-of-type {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
#header {
|
||||
margin: 0 auto;
|
||||
margin-bottom: 15px;
|
||||
margin-top: 20px;
|
||||
width: 80%;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
<h1><?php echo $severity; ?></h1>
|
||||
|
||||
<div class="content">
|
||||
<h3>Message:</h3>
|
||||
<?php echo $message; ?> in <strong><?php echo basename($file); ?></strong> on line <strong><?php echo $line; ?></strong>.
|
||||
<div id="header">
|
||||
<h1 class="laravel"><?php echo $severity; ?></h1>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<h3>Stack Trace:</h3>
|
||||
<div id="wrapper">
|
||||
<h2>Message:</h2>
|
||||
|
||||
<p><?php echo $message; ?> in <strong><?php echo basename($file); ?></strong> on line <strong><?php echo $line; ?></strong>.</p>
|
||||
|
||||
<h2>Stack Trace:</h2>
|
||||
|
||||
<pre><?php echo $trace; ?></pre>
|
||||
</div>
|
||||
|
||||
<h2>Snapshot:</h2>
|
||||
|
||||
<p>
|
||||
<?php if (count($contexts) > 0): ?>
|
||||
|
||||
<?php foreach($contexts as $num => $context): ?>
|
||||
<pre class="context <?php echo ($line == $num) ? 'strong' : ''; ?>"><?php echo htmlentities($num.': '.$context); ?></pre>
|
||||
<?php endforeach; ?>
|
||||
|
||||
<?php else: ?>
|
||||
Snapshot Unavailable.
|
||||
<?php endif; ?>
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue