Пример #1
0
/**
 * Return a partial.
 *
 * @param string $file The file path using dot-notation
 * @param array $data Data to pass through to the partial
 * @return UltraPress\View
 */
function partial($file, $data = [])
{
    return \Ultra\View\View::partial($file, $data);
}
Пример #2
0
 /**
  * View the home page.
  */
 public static function getHome()
 {
     View::get('pages.home');
 }