Laravel URL Helper Function: url
…es are equivalent: 1 use Illuminate \ Support \ Facades \ Url ; 2 3 // Using the Url facade. 4 Url :: to ( ' arbitraryUrl ' ) ; 5 6 // Using the url helper function. 7 url ( ' arbitraryUrl ' ) ; both calls would result in the following URL: 1...