App\Http\Controllers\ArchiveController::showTag PHP Method

showTag() public method

Redirect to tags with default tag.
public showTag ( $id ) : Illuminate\Http\RedirectResponse
$id
return Illuminate\Http\RedirectResponse
    public function showTag($id)
    {
        $tag = $this->tag->getById($id);
        return redirect('/tags')->with('default', $tag);
    }