This commit is contained in:
2025-06-12 20:55:15 +05:00
parent 9f29e13322
commit 8a8ac40a2a
4 changed files with 27 additions and 15 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Support\Facades\Process;
class GitPullController extends Controller
{
public function index()
{
$result = Process::run('ls -la');
return $result->output();
}
}