コード例 #1
0
ファイル: _ide_helper.php プロジェクト: satriashp/tour
 /**
  * Get the entire array of sections.
  *
  * @return array 
  * @static 
  */
 public static function getSections()
 {
     return \Illuminate\View\Factory::getSections();
 }
コード例 #2
0
ファイル: View.php プロジェクト: uiandwe/profile
 /**
  * Get the sections of the rendered view.
  *
  * @return array
  */
 public function renderSections()
 {
     return $this->render(function () {
         return $this->factory->getSections();
     });
 }