Try running php artisan view:clear on your server in case you have them cached.
Jul 28, 2021
9
Level 1
Laravel 8 View not found.
Hello everyone.
I'm using laravel version 8.40 and inertia js. I'm getting an error only on live serve not local. Error is laravel view is not able to find any view file from the resources/Views directory. it's throwing
InvalidArgumentException
View [hello] not found.
Route::get('/',function(){
return view('hello');
});
This Exception is on the throw in the hosting server, not my local server. In the local server, it's working fine.
Level 3
1 - change resources/Views to resources/views (v) as small letter not capital
2 likes
Please or to participate in this conversation.