InvalidArgumentException

View [welcome] not found.

🐛 How I Encountered This Issue

I attempted to relocate the welcome page within the folder structure.

✅ Solution

However, I forgot to updating the route after making this change at routes\web.php.

Route::get('/', function () {
	return view('pages.welcome'); // previously it was view('welcome')
})