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