create performance for supervisor

This commit is contained in:
2025-08-10 14:57:53 +03:30
parent e6f84b3b6f
commit 47b4f12dfd
17 changed files with 264 additions and 104 deletions

View File

@@ -0,0 +1,32 @@
<?php
namespace App\Console\Commands;
use App\Services\Commands\SendSupervisorCheckStatsReportService;
use Illuminate\Console\Command;
class SendSupervisorCheckStatsCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'app:send-supervisor-check-stats';
/**
* The console command description.
*
* @var string
*/
protected $description = 'gather all supervisor check stats report and send them to the center';
/**
* Execute the console command.
*/
public function handle(SendSupervisorCheckStatsReportService $service)
{
$service->execute();
$this->info('Done!');
}
}