path of app directory in controller laravel

Solutions on MaxInterview for path of app directory in controller laravel by the best coders in the world

showing results for - "path of app directory in controller laravel"
Mathilda
03 May 2018
1How to get base path(Project Root) in laravel ?
2base_path(); // Path of application root
3
4
5How to get storage folder path in laravel ?
6storage_path(); // Path of storage/
7
8
9How to get app folder path in laravel ?
10app_path(); // Path of app/