mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-04-05 14:11:05 +02:00
add ability to redirect a link with query string
This commit is contained in:
parent
4c3163674f
commit
ab3471b428
@ -85,6 +85,7 @@ class UserController extends Controller
|
||||
public function clickNumber(request $request)
|
||||
{
|
||||
$link = $request->link;
|
||||
$query = $request->query();
|
||||
$linkId = $request->id;
|
||||
|
||||
if(empty($link && $linkId))
|
||||
@ -92,6 +93,12 @@ class UserController extends Controller
|
||||
return abort(404);
|
||||
}
|
||||
|
||||
if(!empty($query)) {
|
||||
$qs = '';
|
||||
foreach($query as $qk => $qv) { $qs .= $qk .'='. $qv; }
|
||||
$link = $link .'?'. $qs;
|
||||
}
|
||||
|
||||
Link::where('id', $linkId)->increment('click_number', 1);
|
||||
|
||||
return redirect()->away($link);
|
||||
|
Loading…
x
Reference in New Issue
Block a user