Ask New Question
Login or Register
- InvalidArgumentException View not found in Laravel 8
I am getting this error
InvalidArgumentException
View [expenses.list] not found.
expenses.list was not found.
Are you sure the view exists and is a .blade.php file?
Everything is okay from my side and here are the detail
Laravel 8 / PHP 7.3 / MySql 8
My route is working properly and in the controller I have simply put this line.
return view('expenses.list');
and the blade file is presented in the view/expenses/list.blade.php
So why is this not finding the file? What is wrong with it?
Viewing 1 replies (of 1 total)