Example #1
0
 /**
  * Shows the edit project team view.
  *
  * @param \Gitamin\Models\ProjectTeam $team
  *
  * @return \Illuminate\View\View
  */
 public function edit($namespace)
 {
     $group = Group::where('path', '=', $namespace)->first();
     return View::make('groups.edit')->withPageTitle(trans('dashboard.teams.edit.title') . ' - ' . trans('dashboard.dashboard'))->withGroup($group);
 }