Skip to content

Instantly share code, notes, and snippets.

@deleugpn
Created September 21, 2017 17:39
Show Gist options
  • Select an option

  • Save deleugpn/9af65b02abec2fb59eb5df845709d4cc to your computer and use it in GitHub Desktop.

Select an option

Save deleugpn/9af65b02abec2fb59eb5df845709d4cc to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers;
use Facades\App\Process;
class WebServerController extends Controller
{
public function restart()
{
$output = Process::run('service httpd restart');
return redirect('/webserver')->with('output', $output);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment