Browse Source

added route:destination method.

Taylor Otwell 13 years ago
parent
commit
4330124d79
1 changed files with 16 additions and 0 deletions
  1. 16 0
      laravel/routing/route.php

+ 16 - 0
laravel/routing/route.php

@@ -218,4 +218,20 @@ class Route {
 		}));
 	}
 
+	/**
+	 * Extract the URI string from a route destination.
+	 *
+	 * <code>
+	 *		// Returns "home/index" as the destination's URI
+	 *		$uri = Route::uri('GET /home/index');
+	 * </code>
+	 *
+	 * @param  string  $destination
+	 * @return string
+	 */
+	public static function destination($destination)
+	{
+		return trim(substr($destination, strpos($destination, '/')), '/') ?: '/';
+	}
+
 }