Apply fixes from StyleCI

This commit is contained in:
StyleCI Bot
2024-04-01 14:36:34 +00:00
parent d099289685
commit 94e37fcd30

View File

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