visuddhinanda 5 zile în urmă
părinte
comite
c2df8d7e3a
1 a modificat fișierele cu 22 adăugiri și 0 ștergeri
  1. 22 0
      api-v13/app/Console/Commands/UpgradeProgress.php

+ 22 - 0
api-v13/app/Console/Commands/UpgradeProgress.php

@@ -0,0 +1,22 @@
+<?php
+
+namespace App\Console\Commands;
+
+use Illuminate\Console\Attributes\Description;
+use Illuminate\Console\Attributes\Signature;
+use Illuminate\Console\Command;
+
+#[Signature('app:upgrade-progress')]
+#[Description('Command description')]
+class UpgradeProgress extends Command
+{
+    /**
+     * Execute the console command.
+     */
+    public function handle()
+    {
+        //
+        $this->call('upgrade:progress.para');
+        $this->call('upgrade:progress.chapter');
+    }
+}