예제 #1
0
 /**
  * Get an item from the shared data.
  *
  * @param string $key
  * @param mixed $default
  * @return mixed 
  * @static 
  */
 public static function shared($key, $default = null)
 {
     return \Illuminate\View\Environment::shared($key, $default);
 }