From 76e6c269f814c9838ffcc772ff8b503103ba4419 Mon Sep 17 00:00:00 2001 From: Griezman2003 Date: Thu, 1 Jun 2023 20:12:49 -0600 Subject: [PATCH] =?UTF-8?q?a=C3=B1adido=20detalle=20wifi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Commands/Detalle_wifi.php | 57 +++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 app/Commands/Detalle_wifi.php diff --git a/app/Commands/Detalle_wifi.php b/app/Commands/Detalle_wifi.php new file mode 100644 index 0000000..e10c758 --- /dev/null +++ b/app/Commands/Detalle_wifi.php @@ -0,0 +1,57 @@ +output(); + $parsescanwifi = explode(" ----------------- ", $salidascanwifi); + var_dump($salidascanwifi); + $parsescanwifi = end($parsescanwifi); + $parsescanwifi = explode("\n", trim($parsescanwifi, "\n\r")); + $scanwifi = []; + return $scanwifi; + } + /** + * Define the command's schedule. + * + * @param \Illuminate\Console\Scheduling\Schedule $schedule + * @return void + */ + public function schedule(Schedule $schedule): void + { + // $schedule->command(static::class)->everyMinute(); + } +}