Browse Source

added url::current.

Taylor Otwell 13 years ago
parent
commit
88fc4e450d
1 changed files with 10 additions and 0 deletions
  1. 10 0
      laravel/url.php

+ 10 - 0
laravel/url.php

@@ -9,6 +9,16 @@ class URL {
 	 */
 	 */
 	public static $base;
 	public static $base;
 
 
+	/**
+	 * Get the full URL for the current request.
+	 *
+	 * @return string
+	 */
+	public static function current()
+	{
+		return static::to(URI::current());
+	}
+
 	/**
 	/**
 	 * Get the base URL of the application.
 	 * Get the base URL of the application.
 	 *
 	 *