I am trying to use RESTful controller. Here is my Route.php:
Route.php
Route::resource(\'test\', \'TestController\'); Route::get(\'/\', function() { r
In my case the problem was that i called the wrong route in postman.
Wrong route : http://localhost:8000/methodName
Correct route : http://localhost:8000/api/methodName
I forgot to add "/api".