Ejemplo n.º 1
0
 /**
  * Run the composer events for a specific view.
  *
  * @param View $view
  * @return void
  */
 public function callComposer(View $view)
 {
     $hook = 'composing: ' . $view->getName();
     if ($this->action->exists($hook)) {
         do_action($hook, $view);
     }
 }