Example Use | Laravel 5: Generating URLs With url
All of the method/function calls in the following example are equivalent: 1 use Illuminate \ Support \ Facades \ Url ; 2 3 // Using the URL facade. 4 Url :: action ( ' SomeController@someAction ' ) ; 5 6 // Calling the action method on the URL...