@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | |
59 | 59 | $step = $this->steps[$index + 1]; |
60 | 60 | |
61 | - $nextUrl = $this->url . '?' . http_build_query(compact('step')); |
|
61 | + $nextUrl = $this->url.'?'.http_build_query(compact('step')); |
|
62 | 62 | |
63 | 63 | return redirect($nextUrl); |
64 | 64 | } |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | |
152 | 152 | if ($index !== 0) { |
153 | 153 | $step = $this->steps[$index - 1]; |
154 | - $prevUrl = request()->fullUrlWithQuery(compact('step'));; |
|
154 | + $prevUrl = request()->fullUrlWithQuery(compact('step')); ; |
|
155 | 155 | $footer .= "<a href=\"{$prevUrl}\" class=\"btn btn-warning pull-left\">{$trans['prev']}</a>"; |
156 | 156 | } |
157 | 157 | |
@@ -187,6 +187,6 @@ discard block |
||
187 | 187 | */ |
188 | 188 | public function data() |
189 | 189 | { |
190 | - return session()->get('steps.' . $this->current, []); |
|
190 | + return session()->get('steps.'.$this->current, []); |
|
191 | 191 | } |
192 | 192 | } |
193 | 193 | \ No newline at end of file |