Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
URL::base(); を使用しています。そして、私はこのURLを取得します:
http://www.kp.com.mx/sis_colgate/public
しかし、私が必要とするのはこの完全なパスです:
/home/belendez/public_html/sis_colgate/public
どうすればそのパスを取得できるか知っている人はいますか? ありがとう
使いたいのはpathヘルパーです。
path
URL ヘルパーは、HTTP URL を生成するためのものです。
path('public')Laravel 3 で関数を試してみてください。
path('public')
またはpublic_path()Laravel 4の関数。
public_path()
編集:Laravel 4の回答で更新、エリンに感謝