where('slug', $slug)->orWhere('id', (int) $slug)->firstOrFail(); $posts = $category->posts() ->published() ->latest('published_at') ->paginate((int) blog_setting('per_page', config('blog.per_page'))); return theme_view('list', compact('category', 'posts')); } }