I want my view page to open when the type the url as www.domain-name.in/sample/ID. ID can be an integer valure of 5 digits. Right now my view page is opening when I type the url as www.domain-name.in/sample but when i type www.domain-name.in/sample/ID, I'm getting 404 error. This is my route :
Route::get('/{$id}','HomeController@index');This is my controller
public function index(Request $request,$id)
    {
        return view('filename');
    }How can I get view page with this url : www.domain-name.in/sample/ID
 
     
     
    