优化活动列表

This commit is contained in:
2022-02-10 16:23:13 +08:00
parent 64e22c020d
commit 8be61629f6
3 changed files with 133 additions and 106 deletions

View File

@@ -18,9 +18,11 @@ class Grants implements Renderable
'nickname' => $info->user_nickname,
];
});
dd($items->toArray());
return new Table(['Id', '渠道'], $items->toArray());
$table = new Table(['Id', '渠道'], $items->toArray());
return $table->render();
}
}