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

showCategory() public method

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