summaryrefslogtreecommitdiff
path: root/src/Http/UrlGenerator.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-08-22 03:10:08 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-08-22 03:10:08 +0200
commit73c9d923e7cc77847cfcbff4b90ad4815699a4fa (patch)
tree76000712338c18a37a433b365cd32a72de2b1805 /src/Http/UrlGenerator.php
parentb0e7bc0df2eb4975223582089c7a928903e8cd14 (diff)
Renamed RoutingServiceProvider to Http\UrlGeneratorServiceProvider
Diffstat (limited to 'src/Http/UrlGenerator.php')
-rw-r--r--src/Http/UrlGenerator.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Http/UrlGenerator.php b/src/Http/UrlGenerator.php
new file mode 100644
index 00000000..132fefc7
--- /dev/null
+++ b/src/Http/UrlGenerator.php
@@ -0,0 +1,25 @@
+<?php
+
+namespace Engelsystem\Http;
+
+class UrlGenerator
+{
+ /**
+ * @param string $path
+ * @param array $parameters
+ * @return string
+ */
+ public function to($path, $parameters = [])
+ {
+ $path = '/' . ltrim($path, '/');
+ $request = app('request');
+ $uri = $request->getUriForPath($path);
+
+ if (!empty($parameters) && is_array($parameters)) {
+ $parameters = http_build_query($parameters);
+ $uri .= '?' . $parameters;
+ }
+
+ return $uri;
+ }
+}