Example #1
0
 public function show(Project $project)
 {
     $currentSprint = $project->currentSprint();
     return $currentSprint ? App::make('SprintsController')->show($currentSprint) : View::make('project.view', compact('project'));
 }