If you are on Laravel <= 5.2.x you can use implicit controllers, check the controller docs.
Route::controller('blah', 'BlahController');
// POST yoursite.com/blah/blah
public function postBlah(...) { ... }
If you are on 5.3 they have been removed and you are left with resource controllers. The simplest thing to do is just define them explicitly.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community