Answers for "404 not found laravel landing page"

PHP
0

laravel 404 not found not showing error

php artisan key:generate
php artisan optimize
php artisan config:cache
Posted by: Guest on November-01-2021
2

404 page in laravel

//step 1 ) create the errors/404.blade.php in view.

// step 2 ) go to Handler.php and replace the render function to belwo function.
  public function render($request, Throwable $exception)
    {
        if ($exception instanceof AccessDeniedHttpException) {
            return response(view('errors.404'), 404);
        }
        return parent::render($request, $exception);
    }
Posted by: Guest on March-17-2021

Code answers related to "404 not found laravel landing page"

Browse Popular Code Answers by Language