I want the the link $down to open in a new tab, I tried using the redirect to but it didn't work, please help me out
if($item->file_host === 'local')
{
$down = ($item->direct_download_link);
return redirect()->to($down);
}
return back();
}