123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace App\Http\Resources;
- use Illuminate\Http\Request;
- use Illuminate\Http\Resources\Json\JsonResource;
- use App\Services\AccountService;
- use App\Services\StatusService;
- class AdminSpamReport extends JsonResource
- {
- /**
- * Transform the resource into an array.
- *
- * @return array<string, mixed>
- */
- public function toArray(Request $request): array
- {
- $res = [
- 'id' => $this->id,
- 'type' => $this->type,
- 'status' => null,
- 'read_at' => $this->read_at,
- 'created_at' => $this->created_at,
- ];
- if($this->item_id && $this->item_type === 'App\Status') {
- $res['status'] = StatusService::get($this->item_id, false);
- }
- return $res;
- }
- }
|