I have a question about using parameters from the controller in the view.
This is my situation:
In my Controller I have :
foreach ($projects as $project) {
$projectTitle = $project->getName();
}
Now In my view I want to show every title from a project in a table.
How can I do this the right way? I also want to create a link with in my view like this :
"controller/action/projectid/1"
to edit the project.