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.
是否可以使用 laravel 4 生成亲属 url 以在表单和链接中使用?
例如,我有一个表单,我想使用/user/login的相对 url, laravel使用完整的 url http://url.com/user/login 构建表单
我认为您需要的是辅助功能。
Laravel 助手
使用 HTTPS 生成给定路径的完全限定 URL。
echo secure_url('foo/bar', $parameters = array());
生成给定路径的完全限定 URL。
echo url('foo/bar', $parameters = array(), $secure = null);