Como sabes Laravel es un Framework que trabaja con tipo MODELO / VISTA / CONTROLADOR
Route::get('cliente/{nombre?}/{edad?}',function($nombre="Juan Perez", $edad=42){
return view('cliente')
->with('nombre',$nombre)
->with('edad',$edad);
});