This commit is contained in:
rico-vz
2025-03-04 11:50:42 +00:00
committed by GitHub Action
parent 68d18311b4
commit 651b6f449e
5 changed files with 11 additions and 11 deletions

View File

@@ -10,7 +10,7 @@ class PostsController extends Controller
{
public function index()
{
$posts = Sheets::all()->filter(fn($post) => ! $post->hidden)->sortByDesc('date');
$posts = Sheets::all()->filter(fn ($post) => ! $post->hidden)->sortByDesc('date');
$paginatedPosts = Paginate::collection($posts, 6);
return view('posts.index', [