Edit File: Exec.php
<?php namespace Laravel\Octane; class Exec { /** * Run the given command. * * @param string $command * @return array */ public function run($command) { exec($command, $output); return $output; } }
Back to File Manager