feat(scanner): enhance ticket scanning functionality with search and pagination support

This commit is contained in:
2026-08-11 16:34:14 -03:00
parent 498b4d9eac
commit 622a3eef86
5 changed files with 144 additions and 22 deletions

View File

@@ -15,6 +15,8 @@ class ScannedTicketResource extends JsonResource
return [
'product' => $this->name,
'id' => $this->id,
'ticket' => $this->ticket,
'used_at' => $this->used_at,
'expires_at' => $this->getEffectiveExpiresAt(),
'status' => $this->status,
];