techquity / aero-product-collections
Product collections for your Aero Store.
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 1 029
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- aerocommerce/core: ^0
README
Install
Add to your Aero project using the following composer command:
composer require techquity/aero-product-collections
Then add the database tables by migrating your database:
php artisan migrate
Usage
To access the collection in your Twig files:
{% for product in product_collection("homepage-featured") %} <div class="product"> <div class="product__name">{{ product.name }}</div> </div> {% endfor %}
You can also specify a limit on the number of products, eager load product relationships, and provide a sort order:
{% for product in product_collection("homepage-featured", 6, ["images", "manufacturer", "variants.prices"], ["name", "asc"]) %} <div class="product"> <div class="product__name">{{ product.name }}</div> </div> {% endfor %}
The sort argument usually takes an array, but you can also pass a string value of "random"
to get the collection in a random order:
{% for product in product_collection("homepage-featured", 6, ["images", "manufacturer", "variants.prices"], "random") %} <div class="product"> <div class="product__name">{{ product.name }}</div> </div> {% endfor %}
You may pull in products from multiple collections by passing in an array:
product_collection(["main-collection", "another-collection"])
If you wish to specify a fallback for the group, or refine the products in the collection:
product_collection([ { "collection": "related-products", "product": product }, { "not_product": product, "manufacturer": product.manufacturer, "categories": product.categories }, { "not_product": product, "tag_name.en": "upsold-product" } ])