Bạn có thể tham khảo bài dưới:
https://www.scratchcode.io/laravel-8-target-class-controller-does-not-exist
https://laravel.com/docs/8.x/releases#routing-namespace-updates
Đầu tiên Bạn cần tạo Controller băng command:
php artisan make:controller HomeController
bạn cần add thêm function index() và trỏ đến file home.blade.php
chúng ta sẽ trở lại folder route
<?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\HomeController; Route::get('/', [HomeController::class, 'index']);
giờ bạn truy cập vào web là hiện thị là ok