Hướng dẫn tạo trang 404:
- Bạn mở thư mục /routes sau đó sửa file web.php thêm vào nội dung sau:
Route::get('/', function () {
abort(404);
});
- Tiếp theo bạn vào thư mục resources/views và tạo thư mục mới tên errors, sau đó tạo 2 file 404.blade.php và layouts.blade.php. Nội dung 2 file đó như sau:
======= 404.blade.php =======
@extends(‘errors.layouts’)
@section(‘code’, ‘404’)
@section(‘title’, __(‘Page Not Found’))
@section(‘image’)
<div style=“background-image: url({{ asset(‘/svg/404.svg’) }});” class=“absolute pin bg-cover bg-no-repeat md:bg-left lg:bg-center”>
</div>
@endsection
@section(‘message’, __(‘Sorry, the page you are looking for could not be found.’))
======= layouts.blade.php ======= (Vào link này xem https://justpaste.it/dm4oa)