“Ларавел 404” Ответ

Laravel Custom 404 Blade

// Create a file in resources/views/errors/404.blade.php and add this code.
@extends('errors::minimal')

@section('title', __('Not Found'))
@section('code', '404')

@if($exception)
    @section('message', $exception->getMessage())
@else
    @section('message', __('Not Found'))
@endif
  
 abort(404, 'Whatever you were looking for, look somewhere else');
Shadow

404 страница в Ларавеле

//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);
    }
Mohamad

Ларавел 404

//Some exceptions describe HTTP error codes from the server. For example, this may be a "page not found" error (404),
//In order to generate such a response from anywhere in your application, you may use the abort helper:

return abort(404);
// OR
return abort(404, "page not found");
abed.in

Ларавел 8 404 Статус

abort(404)
DJ Ultimate Disco Party

Пользовательский 404 страница в Ларавеле

A very simple one
  
  php artisan vendor:publish --tag=laravel-errors
adeleyeayodeji

Ошибка Laravel 404 на сервере

$ sudo a2enmod rewrite
$ sudo service apache2 restart
Grumpy Guanaco

Ответы похожие на “Ларавел 404”

Вопросы похожие на “Ларавел 404”

Больше похожих ответов на “Ларавел 404” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования