transRoute() public method

Translate routes and save them to the translated routes array (used in the localize route filter)
public transRoute ( string $routeName ) : string
$routeName string Key of the translated string
return string Translated string
Esempio n. 1
0
 /**
  * Translate routes and save them to the translated routes array (used in the localize route filter)
  *
  * @param string $routeName Key of the translated string
  * @return string Translated string
  * @static 
  */
 public static function transRoute($routeName)
 {
     return \Mcamara\LaravelLocalization\LaravelLocalization::transRoute($routeName);
 }