阅读(3550)
赞(12)
Laravel 8 url() {#collection-method}
2021-07-05 09:43:57 更新
url
函数将为指定路径生成一个完整的 URL :
$url = url('user/profile');
$url = url('user/profile', [1]);
如果没有指定路径,该方法将会返回一个 IlluminateRoutingUrlGenerator
实例:
$current = url()->current();
$full = url()->full();
$previous = url()->previous();