handler - Laravel 5.2 - customize error "Whoops, looks like something went wrong" -


how can change error page "whoops, looks went wrong."? want show page 404 inside errors folder handler simple:

public function render($request, exception $e) {     return parent::render($request, $e); } 

i assume you're inside of app/exceptions/handler.php

public function render($request, exception $e) {     return response()->view('errors.custom');  } 

Comments

Popular posts from this blog

ios - RestKit 0.20 — CoreData: error: Failed to call designated initializer on NSManagedObject class (again) -

java - Digest auth with Spring Security using javaconfig -

laravel - PDOException in Connector.php line 55: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) -