Skip to content

Instantly share code, notes, and snippets.

@wodCZ
Created July 25, 2016 20:26
Show Gist options
  • Save wodCZ/cbd808a76c3609ed97a2f169ac5fbace to your computer and use it in GitHub Desktop.
Save wodCZ/cbd808a76c3609ed97a2f169ac5fbace to your computer and use it in GitHub Desktop.
Component example
<?php
class CartPreviewComponent {
public function __construct(CartModel $cartModel, $userId){
$this->cartModel = $cartModel;
$this->userId = $userId;
}
public function render(){
return view('CartPreviewComponentTemplate', ['items' => $this->getItems()]);
}
public function getItems(){
return $this->cartModel->getUserCart($this->userId);
}
}
You have {{ count($items) }} items in your cart.
{{ $cartPreviewComponent }}
<?php
class ProductController {
public function index() {
return view('index', ['cartPreviewComponent' => $this->createCartPreviewComponent()])
}
public function createCartPreviewComponent(){
return new CartPreviewComponent($cartModel, $userId);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment