laravel get url input code example
Example: laravel get a url using name
$url = route('routeName');
//if there is a param:
$url = route('routeName', ['id' => 1]);
https://laravel.com/docs/5.1/helpers#method-route
$url = route('routeName');
//if there is a param:
$url = route('routeName', ['id' => 1]);
https://laravel.com/docs/5.1/helpers#method-route