Laravel 4 – Get Path to App, Public, Storage and Base Install Directories

[php]
<?php
/**
* Path to the ‘app’ folder
*/
echo app_path();
/**
* Path to the project’s root folder
*/
echo base_path();
/**
* Path to the ‘public’ folder
*/
echo public_path();
/**
* Path to the ‘app/storage’ folder
*/
echo storage_path();
?>
[/php]