调整模板

This commit is contained in:
2021-11-24 11:26:03 +08:00
parent 8d58d4784c
commit 0e1d243bbf
3 changed files with 72 additions and 8 deletions

View File

@@ -11,33 +11,43 @@ class CategoryController extends Controller
/**
* 显示分类
*
* @param Category $category [description]
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector|\Illuminate\View\View [type] [description]
*/
public function index(Category $category)
{
if ($category->type == Category::TYPE_SHOW && $category->article_id) {
return redirect("articles/" . $category->article_id);
return redirect("articles/".$category->article_id);
} elseif ($category->type == Category::TYPE_LINK && $category->url) {
return redirect()->away($category->url);
} else {
$template = 'show';
if ($category->template) {
$template = $category->template;
} else {
if ($category->type == Category::TYPE_VIDEO) {
$template = 'videos';
}
if ($category->type == Category::TYPE_ADVERT) {
$template = 'images';
}
}
$articles = $category->relations($category->type)
->where('status', 1)
->latest('sort')
->latest('created_at')
->paginate();
->where('status', 1)
->latest('sort')
->latest('created_at')
->paginate();
$parent = $category;
if ($category->childrens->isEmpty() && $category->parent) {
$parent = $category->parent;
}
return view('category.' . $template, compact('articles', 'category', 'parent'));
return view('category.'.$template, compact('articles', 'category', 'parent'));
}
}