| 123456789101112131415161718192021222324 |
- <?php
- namespace App\Http\Api;
- use App\Models\GroupInfo;
- class GroupApi
- {
- public static function getById($id)
- {
- $group = GroupInfo::where("uid", $id)->first();
- if ($group) {
- return [
- 'id' => $id,
- 'name' => $group->name,
- 'realName' => $group->uid,
- 'studioName' => $group->name,
- 'nickName' => $group->name,
- ];
- } else {
- return null;
- }
- }
- }
|