Skip to content

Instantly share code, notes, and snippets.

@kidker
Created September 27, 2017 20:27
Show Gist options
  • Save kidker/af45ef98bde81442ba3cdb0ca1c79bc3 to your computer and use it in GitHub Desktop.
Save kidker/af45ef98bde81442ba3cdb0ca1c79bc3 to your computer and use it in GitHub Desktop.
Laravel get PATH's
<?
// Path to the project's root folder
echo base_path();
// Path to the 'app' folder
echo app_path();
// Path to the 'public' folder
echo public_path();
//Path to the 'app/storage' folder
echo storage_path();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment