Created
July 25, 2016 20:26
-
-
Save wodCZ/cbd808a76c3609ed97a2f169ac5fbace to your computer and use it in GitHub Desktop.
Component example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You have {{ count($items) }} items in your cart. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ $cartPreviewComponent }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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