Level 7
Do you still get the exception when you remove the two includes for nav? Also, does it produce a stack trace (when you're in debug/local mode)?
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
When I view a not found page, then it display:
ErrorException in Request.php line 794: Session store not set on request.
<?php
namespace App\Exceptions;
use Exception;
use Illuminate\Auth\Access\AuthorizationException;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Symfony\Component\HttpKernel\Exception\HttpException;
use Illuminate\Foundation\Validation\ValidationException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that should not be reported.
*
* @var array
*/
protected $dontReport = [
AuthorizationException::class,
HttpException::class,
ModelNotFoundException::class,
ValidationException::class,
];
/**
* Report or log an exception.
*
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
*
* @param \Exception $e
* @return void
*/
public function report(Exception $e)
{
parent::report($e);
}
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param \Exception $e
* @return \Illuminate\Http\Response
*/
public function render($request, Exception $e)
{
// 404 page when a model is not found
if ($e instanceof ModelNotFoundException) {
return response()->view('errors.404', [], 404);
}
// Custom error 500 view on production
if (app()->environment() == 'production') {
return response()->view('errors.500', [], 500);
}
return parent::render($request, $e);
}
}
@extends('layouts.app')
@section('title', '404 ')
@section('content')
<div class="container main-container headerOffset">
<div class="row innerPage">
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="row userInfo">
<h1 class="h1error"><span class="err404"> 404</span> </h1>
<h1 class="h1error"><span class="err404"> <i class="fa fa-frown-o"></i></span></h1>
</div>
<!--/row end-->
</div>
</div>
<!--/.innerPage-->
<div style="clear:both"></div>
</div>
<!-- /.main-container -->
@include('member.nav_login')
@include('member.nav_signup')
@endsection
Please or to participate in this conversation.