I am new in laravel. By doc, I got that i have write rule for every different url. Is it so? I just wanted a common routing rule which works for all urls something like
Route::get('/{Controller}/{method}', $Controller.'@'.$method);
I know this is wrong, I tried a lot but can't get proper sentence.
I simply want that first segment after Base Url become controller name and second segment become method name.
For the time I used this,
And it's working for me.