Fix Duplicate Division

This commit is contained in:
R
2022-12-08 14:14:46 +07:00
parent 3d9dab502b
commit ab7f19dc17
2 changed files with 4 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ class MemberResources extends JsonResource
return [
'memberId' => $this->member_id,
'fullName' => $this->full_name,
'division' => $this->division->name,
'division' => $this->division->name ?? '',
'limit' => [
'current' => 2000000,
'total' => 4000000,