Route::get('demo/{name?}',function ($name = null) { $demo = '<h2>Demo</h2>'; $data = compact('name','demo'); return view('welcome')->with($data); });