Yasir
Yasir

Reputation: 1070

Lumen shows blank page instead of showing an error on blade

I came across with interesting problem,

I am using lumen on my windows localhost, the problem is while I write incorrect code or syntax error in my view/blade, lumen shows blank page instead of error. However, in controller or another page I am able to debug my code, It shows error.

Error debugging is open in php.ini.

APP_DEBUG=true in my project.

I have tried to fresh install, still same.

Upvotes: 4

Views: 1328

Answers (1)

Pawel
Pawel

Reputation: 380

Edit app/Exceptions/Handler.php file , method render

e.g. make something like this:

public function render($request, Throwable $exception)
{
    if (env('APP_DEBUG')) {
        dd($exception);
    }
    return parent::render($request, $exception);
}

or you can grab it as it is instanceof Illuminate\View\ViewException

Upvotes: 7

Related Questions