$messages=array('Should we ask for directions?','This doesn\'t look familiar.','We need a map.');
$messages=array("We're lost.","This doesn't look familiar.","We need a map.");
$message=$messages[mt_rand(0,2)];
?>
<h1><?phpecho$message;?></h1>
<divid="content">
The resource you requested was not found.
<br/><br/>
Would you like go to our <ahref="<?phpechoSystem\Config::get('application.url');?>">home page</a> instead?
<h1class="laravel"><?phpecho$message;?></h1>
</div>
<divid="wrapper">
<?php
$apologies=array("This is embarrassing.","Don't give up on us.","We're really sorry.");
$apology=$apologies[mt_rand(0,2)];
?>
<h2><?phpecho$apology;?></h2>
<p>We couldn't find the resource you requested. Would you like go to our <ahref="<?phpechoSystem\Config::get('application.url');?>">home page</a> instead?</p>