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 9d8f251 commit 90263eaCopy full SHA for 90263ea
app/Console/Commands/SendUpcomingAuditReport.php
@@ -49,8 +49,10 @@ public function handle()
49
50
$assets_query = Asset::whereNull('deleted_at')->dueOrOverdueForAudit($settings)->orderBy('assets.next_audit_date', 'asc')->with('supplier');
51
$asset_count = $assets_query->count();
52
- $this->info(number_format($asset_count) . ' assets must be audited in on or before ' . $interval_date);
53
-
+ $this->info(number_format($asset_count) . ' assets must be audited on or before ' . $interval_date);
+ if (!$this->option('with-output')) {
54
+ $this->info('Run this command with the --with-output option to see the full list in the console.');
55
+ }
56
57
58
if ($asset_count > 0) {
0 commit comments