Exemplo n.º 1
0
 public function all()
 {
     $this->out('<info>Compiling all templates</info>');
     foreach (Scanner::all() as $section => $templates) {
         $this->out('<info>Compiling ' . $section . '\'s templates</info>');
         $this->walkIterator($templates);
     }
 }
Exemplo n.º 2
0
 /**
  * Return all sections (app & plugins) with an Template directory.
  *
  * @return array
  */
 public static function all()
 {
     return static::strip(Scanner::all());
 }