Skip to content

Instantly share code, notes, and snippets.

@5lineofcode
Created May 13, 2019 22:32
Show Gist options
  • Save 5lineofcode/c5103c009908c0356aa7a1384061465f to your computer and use it in GitHub Desktop.
Save 5lineofcode/c5103c009908c0356aa7a1384061465f to your computer and use it in GitHub Desktop.
Auto Chmod777 Route
Route::get("fix",function(){
$result = system("cd .. && chmod 777 . -R");
echo $result;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment