0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Laravel 404 デフォルトデザインを簡易的に変更する

Posted at

laravel 404 のデフォルトのデザインを変更する

404って何??? →HTTP例外のこと

サーバーからのHTTPエラーコードを表す例外もあるってことで。。
たとえば、「ページが見つかりません」エラー(404)、「不正なエラー」(401)などがあります。
Laravelでアプリケーションのどこからでもこのようなレスポンスを生成したい場合は、
abortヘルパを使用できます。

abort(404);

Laravelではデフォルトの404のページを変更する方法

php artisan vendor:publish --tag=laravel-errors

を記述してコマンドを叩く。

image.png
になればOK。
→一応意味はそのまま。
venderフォルダのExceptionをresources/errorsに移すという意味。

image.png
が作成される。

404.blade.phpを確認しすると
image.png
となっているのでここのminimalの部分をillustrated-layoutなどにするとレイアウトを簡単に変更できる。
(*ここではレイアウトのカスタマイズは省略します)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?