We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad69447 commit b67f808Copy full SHA for b67f808
app/Console/Commands/SendExpirationAlerts.php
@@ -73,7 +73,7 @@ public function handle()
73
74
$this->table(
75
['ID', 'Name', 'Expires', 'Termination Date'],
76
- $licenses->map(fn($item) => ['ID' => $item->name, 'Name' => $item->name, 'Expires' => $item->expiration_date, 'Termination Date' => $item->termination_date])
+ $licenses->map(fn($item) => ['ID' => $item->id, 'Name' => $item->name, 'Expires' => $item->expiration_date, 'Termination Date' => $item->termination_date])
77
);
78
}
79
0 commit comments