Example #1
0
 /**
  * Base layout applied to all views
  *
  * @param $event
  */
 public function handle($event)
 {
     /**
      * Scripts, styles, meta, and more...
      */
     view()->composer('page.partials.head', function ($view) {
         append_section('head.anchor', ['config' => 'store.name']);
         append_section('head.style', ['style' => 'css/base.css']);
         //todo move to checkout controller
         append_section('head.style', ['style' => 'css/util/checkout.css']);
         // css utilities - todo merge?
         append_section('head.style', ['style' => 'css/util/messages.css']);
         append_section('head.style', ['style' => 'css/util/navigation.css']);
         append_section('head.style', ['style' => 'css/util/print.css']);
         append_section('head.style', ['style' => 'css/util/table.css']);
         append_section('head.style', ['style' => 'css/app.css']);
         append_section('head.script', ['script' => 'js/app.js']);
         append_section('head.meta', ['meta' => ['name' => 'robots', 'content' => 'noindex, nofollow']]);
     });
     /**
      * Notification messages
      */
     view()->composer('layouts.master', function ($view) {
         append_section('main.before', ['view' => 'layouts.partials.messages']);
     });
 }
Example #2
0
 function compose_section()
 {
     $args = func_get_args();
     $layout = array_shift($args);
     $section = array_shift($args);
     foreach ($args as $config) {
         view()->composer($layout, function ($view) use($section, $config) {
             append_section($section, $config);
         });
     }
 }
Example #3
0
 public function getIndex(Cart $cart)
 {
     append_section('cart.items', view('cart.partials.items')->withItems($cart->getItems()));
     return view('cart.page')->withTotals(['Total' => $cart->getTotal()]);
 }