We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d72dcb commit 8bcbfedCopy full SHA for 8bcbfed
app/Http/Responses/Issue/Store.php
@@ -8,10 +8,10 @@ class Store
8
{
9
public function response($request,$issue)
10
11
- return $request->ajax() ? $this->toAjax($request,$issue) : $this->toHtml($request,$issue);
+ return $request->ajax() ? $this->toAjax($request,$issue) : $this->toHtml($issue);
12
}
13
14
- private function toHtml($request,$issue)
+ private function toHtml($issue)
15
16
return redirect()->route('issues.show', ['slug' => $issue->slug])
17
->with('success', trans('gitscrum.congratulations-the-issue-has-been-created-with-successfully'));
0 commit comments