Can someone please tell me why it doesn't works? Returns nothing.
Route:
Route::get('/terms/privacy/', [
'uses'=>'contentController@dynamic',
'urlkey'=>'privacy'
])->name('privacy');
ContentController:
public function dynamic($urlkey){
return $urlkey;
}