fix config calls in error views.
This commit is contained in:
parent
5d87da6172
commit
c2f5e7eeb5
|
@ -81,7 +81,7 @@
|
|||
|
||||
<h2><?php echo $apology; ?></h2>
|
||||
|
||||
<p>We couldn't find the resource you requested. Would you like go to our <a href="<?php echo Laravel\Config::get('application.url'); ?>">home page</a> instead?</p>
|
||||
<p>We couldn't find the resource you requested. Would you like go to our <a href="<?php echo Config::get('application.url'); ?>">home page</a> instead?</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -81,7 +81,7 @@
|
|||
|
||||
<h2><?php echo $apology; ?></h2>
|
||||
|
||||
<p>Something failed while we were handling your request. Would you like go to our <a href="<?php echo Laravel\Config::get('application.url'); ?>">home page</a> instead?</p>
|
||||
<p>Something failed while we were handling your request. Would you like go to our <a href="<?php echo Config::get('application.url'); ?>">home page</a> instead?</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue