laravel redirect to 404 page

    By: Thad Mertz
    3 years ago

    Easy, Just add this

    return abort(404);
    

    It will redirect you to "resources/views/errors/404.blade.php".

    Hope it helps